make_commentable 0.0.7.a → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ 25.05.2012
2
+ CHANGELOG file added.
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in commentable.gemspec
4
+ gemspec
@@ -0,0 +1 @@
1
+ Copyright (c) 2012 Alexey Lukyanov
@@ -0,0 +1 @@
1
+ make_commentable gem
@@ -0,0 +1,28 @@
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,3 +1,3 @@
1
1
  module Commentable
2
- VERSION = "0.0.7.a"
2
+ VERSION = "0.0.7"
3
3
  end
@@ -0,0 +1,24 @@
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
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: make_commentable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7.a
5
- prerelease: 6
4
+ version: 0.0.7
5
+ prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Alexey Lukyanov
@@ -66,12 +66,18 @@ extensions: []
66
66
  extra_rdoc_files:
67
67
  - README.rdoc
68
68
  files:
69
+ - make_commentable/Rakefile
69
70
  - make_commentable/lib/make_commentable.rb
70
71
  - make_commentable/lib/make_commentable/version.rb
71
72
  - make_commentable/lib/make_commentable/commentable_methods.rb
73
+ - make_commentable/LICENSE
74
+ - make_commentable/make_commentable.gemspec
75
+ - make_commentable/CHANGELOG
72
76
  - make_commentable/generators/comment/templates/create_comments.rb
73
77
  - make_commentable/generators/comment/templates/comment.rb
74
78
  - make_commentable/generators/comment/comment_generator.rb
79
+ - make_commentable/README.rdoc
80
+ - make_commentable/Gemfile
75
81
  - README.rdoc
76
82
  homepage: https://rubygems.org/gems/make_commentable
77
83
  licenses: []
@@ -92,9 +98,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
92
98
  required_rubygems_version: !ruby/object:Gem::Requirement
93
99
  none: false
94
100
  requirements:
95
- - - ! '>'
101
+ - - ! '>='
96
102
  - !ruby/object:Gem::Version
97
- version: 1.3.1
103
+ version: '0'
98
104
  requirements: []
99
105
  rubyforge_project:
100
106
  rubygems_version: 1.8.24