Regenerate gemspec with thor tasks
This commit is contained in:
parent
5a05d860ec
commit
cbb07306d4
|
@ -1,15 +1,12 @@
|
|||
# Generated by jeweler
|
||||
# DO NOT EDIT THIS FILE
|
||||
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
||||
# -*- encoding: utf-8 -*-
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = %q{webrat}
|
||||
s.version = "0.6.rc1"
|
||||
|
||||
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 = ["Bryan Helmkamp"]
|
||||
s.date = %q{2009-09-22}
|
||||
s.date = %q{2009-11-15}
|
||||
s.description = %q{Webrat lets you quickly write expressive and robust acceptance tests
|
||||
for a Ruby web application. It supports simulating a browser inside
|
||||
a Ruby process to avoid the performance hit and browser dependency of
|
||||
|
@ -18,18 +15,19 @@ Selenium tests when necessary (eg. for testing AJAX interactions).
|
|||
Most Ruby web frameworks and testing frameworks are supported.}
|
||||
s.email = %q{bryan@brynary.com}
|
||||
s.extra_rdoc_files = [
|
||||
"History.txt",
|
||||
"README.rdoc",
|
||||
"MIT-LICENSE.txt",
|
||||
"README.rdoc"
|
||||
"History.txt"
|
||||
]
|
||||
s.files = [
|
||||
".document",
|
||||
".gitignore",
|
||||
"Gemfile",
|
||||
"History.txt",
|
||||
"MIT-LICENSE.txt",
|
||||
"README.rdoc",
|
||||
"Rakefile",
|
||||
"VERSION",
|
||||
"Thorfile",
|
||||
"install.rb",
|
||||
"lib/webrat.rb",
|
||||
"lib/webrat/adapters/mechanize.rb",
|
||||
|
@ -142,7 +140,7 @@ Most Ruby web frameworks and testing frameworks are supported.}
|
|||
"spec/integration/rack/test/webrat_rack_test.rb",
|
||||
"spec/integration/rails/.gitignore",
|
||||
"spec/integration/rails/Rakefile",
|
||||
"spec/integration/rails/app/controllers/application.rb",
|
||||
"spec/integration/rails/app/controllers/application_controller.rb",
|
||||
"spec/integration/rails/app/controllers/buttons_controller.rb",
|
||||
"spec/integration/rails/app/controllers/fields_controller.rb",
|
||||
"spec/integration/rails/app/controllers/links_controller.rb",
|
||||
|
@ -238,7 +236,6 @@ Most Ruby web frameworks and testing frameworks are supported.}
|
|||
"webrat.gemspec"
|
||||
]
|
||||
s.homepage = %q{http://github.com/brynary/webrat}
|
||||
s.rdoc_options = ["--charset=UTF-8"]
|
||||
s.require_paths = ["lib"]
|
||||
s.rubyforge_project = %q{webrat}
|
||||
s.rubygems_version = %q{1.3.5}
|
||||
|
@ -267,7 +264,7 @@ Most Ruby web frameworks and testing frameworks are supported.}
|
|||
"spec/integration/rack/app.rb",
|
||||
"spec/integration/rack/test/helper.rb",
|
||||
"spec/integration/rack/test/webrat_rack_test.rb",
|
||||
"spec/integration/rails/app/controllers/application.rb",
|
||||
"spec/integration/rails/app/controllers/application_controller.rb",
|
||||
"spec/integration/rails/app/controllers/buttons_controller.rb",
|
||||
"spec/integration/rails/app/controllers/fields_controller.rb",
|
||||
"spec/integration/rails/app/controllers/links_controller.rb",
|
||||
|
@ -340,21 +337,12 @@ Most Ruby web frameworks and testing frameworks are supported.}
|
|||
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
||||
s.add_runtime_dependency(%q<nokogiri>, [">= 1.2.0"])
|
||||
s.add_runtime_dependency(%q<rack>, [">= 1.0"])
|
||||
s.add_development_dependency(%q<rails>, [">= 2.3"])
|
||||
s.add_development_dependency(%q<merb-core>, [">= 1.0"])
|
||||
s.add_development_dependency(%q<launchy>, [">= 0"])
|
||||
else
|
||||
s.add_dependency(%q<nokogiri>, [">= 1.2.0"])
|
||||
s.add_dependency(%q<rack>, [">= 1.0"])
|
||||
s.add_dependency(%q<rails>, [">= 2.3"])
|
||||
s.add_dependency(%q<merb-core>, [">= 1.0"])
|
||||
s.add_dependency(%q<launchy>, [">= 0"])
|
||||
end
|
||||
else
|
||||
s.add_dependency(%q<nokogiri>, [">= 1.2.0"])
|
||||
s.add_dependency(%q<rack>, [">= 1.0"])
|
||||
s.add_dependency(%q<rails>, [">= 2.3"])
|
||||
s.add_dependency(%q<merb-core>, [">= 1.0"])
|
||||
s.add_dependency(%q<launchy>, [">= 0"])
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue