make_commentable 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,3 @@
1
1
  module Commentable
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: make_commentable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -66,18 +66,12 @@ extensions: []
66
66
  extra_rdoc_files:
67
67
  - README.rdoc
68
68
  files:
69
- - make_commentable/Rakefile
70
69
  - make_commentable/lib/make_commentable.rb
71
70
  - make_commentable/lib/make_commentable/version.rb
72
71
  - make_commentable/lib/make_commentable/commentable_methods.rb
73
- - make_commentable/LICENSE
74
- - make_commentable/make_commentable.gemspec
75
- - make_commentable/CHANGELOG
76
72
  - make_commentable/generators/comment/templates/create_comments.rb
77
73
  - make_commentable/generators/comment/templates/comment.rb
78
74
  - make_commentable/generators/comment/comment_generator.rb
79
- - make_commentable/README.rdoc
80
- - make_commentable/Gemfile
81
75
  - README.rdoc
82
76
  homepage: https://rubygems.org/gems/make_commentable
83
77
  licenses: []
@@ -1,2 +0,0 @@
1
- 25.05.2012
2
- CHANGELOG file added.
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in commentable.gemspec
4
- gemspec
@@ -1 +0,0 @@
1
- Copyright (c) 2012 Alexey Lukyanov
@@ -1 +0,0 @@
1
- make_commentable gem
@@ -1,28 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- $LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
3
- require 'rubygems'
4
- require 'bundler/setup'
5
- require 'make_commentable/version'
6
-
7
- require "rspec/core/rake_task"
8
- RSpec::Core::RakeTask.new(:spec)
9
-
10
- task :default => :spec
11
-
12
- task :build do
13
- system "gem build make_commentable.gemspec"
14
- end
15
-
16
- task :release => :build do
17
- system "gem push make_commentable-#{Commentable::VERSION}.gem"
18
- end
19
-
20
- require 'rdoc/task'
21
- desc 'Generate documentation for the make_commentable gem.'
22
- Rake::RDocTask.new(:rdoc) do |rdoc|
23
- rdoc.rdoc_dir = 'rdoc'
24
- rdoc.title = 'make_commentable'
25
- rdoc.options << '--line-numbers' << '--inline-source'
26
- rdoc.rdoc_files.include('README.rdoc')
27
- rdoc.rdoc_files.include('lib/**/*.rb')
28
- end
@@ -1,24 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/make_commentable/version', __FILE__)
3
-
4
- Gem::Specification.new do |s|
5
- s.name = %q{make_commentable}
6
- s.version = ::Commentable::VERSION
7
- s.authors = ["Alexey Lukyanov"]
8
- s.description = %q{add comments implementation for Active Record}
9
- s.email = %q{zozz2008@gmail.com}
10
- s.extra_rdoc_files = [
11
- "README.rdoc"
12
- ]
13
- s.files = Dir['make_commentable/**/*'].to_a #Dir.glob("lib/make_commentable/lib/**/*") + %w(README.rdoc)
14
- s.homepage = %q{https://rubygems.org/gems/make_commentable}
15
- s.rdoc_options = ["--main", "README.rdoc", "--inline-source", "--line-numbers"]
16
- s.require_paths = ["lib"]
17
- s.rubygems_version = '>= 1.8.22'
18
- s.summary = %q{add comments implementation for Active Record}
19
-
20
- s.add_development_dependency('rails', '>= 3.2.1')
21
-
22
- s.add_runtime_dependency 'activerecord', '>= 3.0.0'
23
- s.add_runtime_dependency('awesome_nested_set', '>= 2.1.3')
24
- end