@@ -4,36 +4,36 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
require 'annotate/version'
5
5
6
6
Gem ::Specification . new do |s |
7
- s . name = " annotate"
7
+ s . name = ' annotate'
8
8
s . version = Annotate . version
9
9
10
10
s . required_ruby_version = '>= 1.9.3'
11
- s . required_rubygems_version = Gem ::Requirement . new ( " >= 0" ) if s . respond_to? :required_rubygems_version=
12
- s . authors = [ " Alex Chaffee" , " Cuong Tran" , " Marcos Piccinini" , " Turadg Aleahmad" , " Jon Frisby" ]
13
- s . description = " Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema."
14
-
15
- s . executables = [ " annotate" ]
16
- s . extra_rdoc_files = [ " README.rdoc" , " CHANGELOG.rdoc" , " TODO.rdoc" ]
17
- s . files = [ " AUTHORS.rdoc" , " CHANGELOG.rdoc" , " LICENSE.txt" , " README.rdoc" , " TODO.rdoc" , " annotate.gemspec" , " bin/annotate" , " lib/annotate.rb" , " lib/annotate/active_record_patch.rb" , " lib/annotate/annotate_models.rb" , " lib/annotate/annotate_routes.rb" , " lib/annotate/tasks.rb" , " lib/annotate/version.rb" , " lib/generators/annotate/USAGE" , " lib/generators/annotate/install_generator.rb" , " lib/generators/annotate/templates/auto_annotate_models.rake" , " lib/tasks/annotate_models.rake" , " lib/tasks/annotate_routes.rake" , " lib/tasks/migrate.rake" ]
18
- s . homepage = " http://github.com/ctran/annotate_models"
19
- s . licenses = [ " Ruby" ]
20
- s . require_paths = [ " lib" ]
21
- s . rubyforge_project = " annotate"
22
- s . rubygems_version = " 2.1.11"
23
- s . summary = " Annotates Rails Models, routes, fixtures, and others based on the database schema."
11
+ s . required_rubygems_version = Gem ::Requirement . new ( ' >= 0' ) if s . respond_to? :required_rubygems_version=
12
+ s . authors = [ ' Alex Chaffee' , ' Cuong Tran' , ' Marcos Piccinini' , ' Turadg Aleahmad' , ' Jon Frisby' ]
13
+ s . description = ' Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema.'
14
+
15
+ s . executables = [ ' annotate' ]
16
+ s . extra_rdoc_files = [ ' README.rdoc' , ' CHANGELOG.rdoc' , ' TODO.rdoc' ]
17
+ s . files = [ ' AUTHORS.rdoc' , ' CHANGELOG.rdoc' , ' LICENSE.txt' , ' README.rdoc' , ' TODO.rdoc' , ' annotate.gemspec' , ' bin/annotate' , ' lib/annotate.rb' , ' lib/annotate/active_record_patch.rb' , ' lib/annotate/annotate_models.rb' , ' lib/annotate/annotate_routes.rb' , ' lib/annotate/tasks.rb' , ' lib/annotate/version.rb' , ' lib/generators/annotate/USAGE' , ' lib/generators/annotate/install_generator.rb' , ' lib/generators/annotate/templates/auto_annotate_models.rake' , ' lib/tasks/annotate_models.rake' , ' lib/tasks/annotate_routes.rake' , ' lib/tasks/migrate.rake' ]
18
+ s . homepage = ' http://github.com/ctran/annotate_models'
19
+ s . licenses = [ ' Ruby' ]
20
+ s . require_paths = [ ' lib' ]
21
+ s . rubyforge_project = ' annotate'
22
+ s . rubygems_version = ' 2.1.11'
23
+ s . summary = ' Annotates Rails Models, routes, fixtures, and others based on the database schema.'
24
24
25
- if s . respond_to? :specification_version then
25
+ if s . respond_to? :specification_version
26
26
s . specification_version = 4
27
27
28
- if Gem ::Version . new ( Gem ::VERSION ) >= Gem ::Version . new ( '1.2.0' ) then
29
- s . add_runtime_dependency ( %q<rake> , [ " >= 10.4" , " < 12.1" ] )
30
- s . add_runtime_dependency ( %q<activerecord> , [ " >= 3.2" , " < 6.0" ] )
28
+ if Gem ::Version . new ( Gem ::VERSION ) >= Gem ::Version . new ( '1.2.0' )
29
+ s . add_runtime_dependency ( %q<rake> , [ ' >= 10.4' , ' < 12.1' ] )
30
+ s . add_runtime_dependency ( %q<activerecord> , [ ' >= 3.2' , ' < 6.0' ] )
31
31
else
32
- s . add_dependency ( %q<rake> , [ " >= 10.4" , " < 12.1" ] )
33
- s . add_dependency ( %q<activerecord> , [ " >= 3.2" , " < 6.0" ] )
32
+ s . add_dependency ( %q<rake> , [ ' >= 10.4' , ' < 12.1' ] )
33
+ s . add_dependency ( %q<activerecord> , [ ' >= 3.2' , ' < 6.0' ] )
34
34
end
35
35
else
36
- s . add_dependency ( %q<rake> , [ " >= 0.8.7" ] )
37
- s . add_dependency ( %q<activerecord> , [ " >= 3.2" , " < 6.0" ] )
36
+ s . add_dependency ( %q<rake> , [ ' >= 0.8.7' ] )
37
+ s . add_dependency ( %q<activerecord> , [ ' >= 3.2' , ' < 6.0' ] )
38
38
end
39
39
end
0 commit comments