fix gemspec and get rspecs partly working again
Showing
# Generated by jeweler | # Generated by jeweler | ||
# DO NOT EDIT THIS FILE | # DO NOT EDIT THIS FILE DIRECTLY | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec` | # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' | ||
# -*- encoding: utf-8 -*- | # -*- encoding: utf-8 -*- | ||
Gem::Specification.new do |s| | Gem::Specification.new do |s| | ||
s.name = %q{annotate} | s.name = "annotate" | ||
s.version = "2.4.0" | s.version = "2.4.1.beta1" | ||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Cuong Tran", "Alex Chaffee", "Marcos Piccinini"] | s.authors = ["Cuong Tran", "Alex Chaffee", "Marcos Piccinini", "Turadg Aleahmad"] | ||
s.date = %q{2009-10-23} | s.date = "2011-09-02" | ||
#s.default_executable = %q{annotate} | s.description = "When run, inserts table descriptions from db.schema into a comment block of relevant source code." | ||
s.description = %q{Annotates Rails Models, routes, fixtures, and others based on the database schema.} | s.email = ["alex@stinky.com", "ctran@pragmaquest.com", "x@nofxx.com", "turadg@aleahmad.net"] | ||
s.email = ["alex@stinky.com", "ctran@pragmaquest.com", "x@nofxx.com"] | |||
s.executables = ["annotate"] | s.executables = ["annotate"] | ||
s.extra_rdoc_files = [ | s.extra_rdoc_files = [ | ||
"README.rdoc" | "README.rdoc" | ||
... | @@ -20,7 +19,9 @@ Gem::Specification.new do |s| | ... | @@ -20,7 +19,9 @@ Gem::Specification.new do |s| |
s.files = [ | s.files = [ | ||
"History.txt", | "History.txt", | ||
"README.rdoc", | "README.rdoc", | ||
"Rakefile", | |||
"VERSION.yml", | "VERSION.yml", | ||
"annotate.gemspec", | |||
"bin/annotate", | "bin/annotate", | ||
"lib/annotate.rb", | "lib/annotate.rb", | ||
"lib/annotate/annotate_models.rb", | "lib/annotate/annotate_models.rb", | ||
... | @@ -32,31 +33,26 @@ Gem::Specification.new do |s| | ... | @@ -32,31 +33,26 @@ Gem::Specification.new do |s| |
"spec/annotate_spec.rb", | "spec/annotate_spec.rb", | ||
"spec/spec.opts", | "spec/spec.opts", | ||
"spec/spec_helper.rb", | "spec/spec_helper.rb", | ||
"tasks/migrate.rake" | "tasks/migrate.rake", | ||
"todo.txt" | |||
] | ] | ||
s.homepage = %q{http://github.com/ctran/annotate_models} | s.homepage = "http://github.com/ctran/annotate_models" | ||
s.rdoc_options = ["--charset=UTF-8"] | |||
s.require_paths = ["lib"] | s.require_paths = ["lib"] | ||
s.rubygems_version = %q{1.3.5} | s.rubyforge_project = "annotate" | ||
s.summary = %q{Annotates Rails Models, routes, fixtures, and others based on the database schema.} | s.rubygems_version = "1.8.10" | ||
s.test_files = [ | s.summary = "Annotates Rails models, routes, fixtures, and others based on the database schema." | ||
"spec/annotate/annotate_models_spec.rb", | s.test_files = ["spec/annotate/annotate_models_spec.rb", "spec/annotate/annotate_routes_spec.rb", "spec/annotate_spec.rb", "spec/spec.opts", "spec/spec_helper.rb"] | ||
"spec/annotate/annotate_routes_spec.rb", | |||
"spec/annotate_spec.rb", | |||
"spec/spec_helper.rb" | |||
] | |||
s.add_runtime_dependency('rake') | |||
s.add_development_dependency('jeweler') | |||
s.add_development_dependency('rspec', '~> 1.3.2') | |||
s.add_development_dependency('activesupport', '>= 2.1.0') | |||
if s.respond_to? :specification_version then | if s.respond_to? :specification_version then | ||
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION | |||
s.specification_version = 3 | s.specification_version = 3 | ||
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then | if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
s.add_development_dependency(%q<rspec>, [">= 0"]) | |||
else | else | ||
s.add_dependency(%q<rspec>, [">= 0"]) | |||
end | end | ||
else | else | ||
s.add_dependency(%q<rspec>, [">= 0"]) | |||
end | end | ||
end | end | ||
Please
register
or
sign in
to comment