Skip to content

Commit

Permalink
Regenerated gemspec for version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sandro committed Jun 13, 2010
1 parent 9b7faa4 commit d160df6
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions httparty.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{httparty}
s.version = "0.5.2"
s.version = "0.6.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["John Nunemaker", "Sandro Turriate"]
s.date = %q{2010-01-31}
s.date = %q{2010-06-13}
s.default_executable = %q{httparty}
s.description = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
s.email = %q{nunemaker@gmail.com}
Expand Down Expand Up @@ -38,6 +38,8 @@ Gem::Specification.new do |s|
"features/basic_authentication.feature",
"features/command_line.feature",
"features/deals_with_http_error_codes.feature",
"features/digest_authentication.feature",
"features/handles_compressed_responses.feature",
"features/handles_multiple_formats.feature",
"features/steps/env.rb",
"features/steps/httparty_response_steps.rb",
Expand All @@ -52,6 +54,7 @@ Gem::Specification.new do |s|
"lib/httparty/core_extensions.rb",
"lib/httparty/exceptions.rb",
"lib/httparty/module_inheritable_attributes.rb",
"lib/httparty/net_digest_auth.rb",
"lib/httparty/parser.rb",
"lib/httparty/request.rb",
"lib/httparty/response.rb",
Expand All @@ -77,7 +80,7 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{httparty}
s.rubygems_version = %q{1.3.5}
s.rubygems_version = %q{1.3.6}
s.summary = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
s.test_files = [
"spec/httparty/cookie_hash_spec.rb",
Expand All @@ -102,27 +105,27 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<crack>, ["= 0.1.6"])
s.add_runtime_dependency(%q<crack>, ["= 0.1.7"])
s.add_development_dependency(%q<activesupport>, ["~> 2.3"])
s.add_development_dependency(%q<cucumber>, ["~> 0.4"])
s.add_development_dependency(%q<cucumber>, ["~> 0.7"])
s.add_development_dependency(%q<fakeweb>, ["~> 1.2"])
s.add_development_dependency(%q<mongrel>, ["~> 1.1"])
s.add_development_dependency(%q<rspec>, ["= 1.2.9"])
s.add_development_dependency(%q<rspec>, ["~> 1.3"])
else
s.add_dependency(%q<crack>, ["= 0.1.6"])
s.add_dependency(%q<crack>, ["= 0.1.7"])
s.add_dependency(%q<activesupport>, ["~> 2.3"])
s.add_dependency(%q<cucumber>, ["~> 0.4"])
s.add_dependency(%q<cucumber>, ["~> 0.7"])
s.add_dependency(%q<fakeweb>, ["~> 1.2"])
s.add_dependency(%q<mongrel>, ["~> 1.1"])
s.add_dependency(%q<rspec>, ["= 1.2.9"])
s.add_dependency(%q<rspec>, ["~> 1.3"])
end
else
s.add_dependency(%q<crack>, ["= 0.1.6"])
s.add_dependency(%q<crack>, ["= 0.1.7"])
s.add_dependency(%q<activesupport>, ["~> 2.3"])
s.add_dependency(%q<cucumber>, ["~> 0.4"])
s.add_dependency(%q<cucumber>, ["~> 0.7"])
s.add_dependency(%q<fakeweb>, ["~> 1.2"])
s.add_dependency(%q<mongrel>, ["~> 1.1"])
s.add_dependency(%q<rspec>, ["= 1.2.9"])
s.add_dependency(%q<rspec>, ["~> 1.3"])
end
end

0 comments on commit d160df6

Please sign in to comment.