Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Version bump to 0.5.0
  • Loading branch information
sandro committed Dec 8, 2009
1 parent 1e5a3e2 commit d6b351f
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 15 deletions.
4 changes: 2 additions & 2 deletions History
@@ -1,7 +1,7 @@
== 0.4.6 master
== 0.5.0 2009-12-07
* bug fixes
* inheritable attributes no longer mutable by subclasses (yyyc514)
* namespace BasicObject within HTTParty to reduce class name collisions (eric)
* namespace BasicObject within HTTParty to avoid class name collisions (eric)

* major enhancements
* Custom Parsers via class or proc
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.4.5
0.5.0
40 changes: 29 additions & 11 deletions httparty.gemspec
@@ -1,15 +1,15 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-

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

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["John Nunemaker"]
s.date = %q{2009-09-12}
s.authors = ["John Nunemaker", "Sandro Turriate"]
s.date = %q{2009-12-07}
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 All @@ -29,6 +29,7 @@ Gem::Specification.new do |s|
"cucumber.yml",
"examples/aaws.rb",
"examples/basic.rb",
"examples/custom_parsers.rb",
"examples/delicious.rb",
"examples/google.rb",
"examples/rubyurl.rb",
Expand All @@ -51,6 +52,7 @@ Gem::Specification.new do |s|
"lib/httparty/core_extensions.rb",
"lib/httparty/exceptions.rb",
"lib/httparty/module_inheritable_attributes.rb",
"lib/httparty/parser.rb",
"lib/httparty/request.rb",
"lib/httparty/response.rb",
"lib/httparty/version.rb",
Expand All @@ -61,6 +63,7 @@ Gem::Specification.new do |s|
"spec/fixtures/twitter.xml",
"spec/fixtures/undefined_method_add_node_for_nil.xml",
"spec/httparty/cookie_hash_spec.rb",
"spec/httparty/parser_spec.rb",
"spec/httparty/request_spec.rb",
"spec/httparty/response_spec.rb",
"spec/httparty_spec.rb",
Expand All @@ -69,21 +72,23 @@ Gem::Specification.new do |s|
"website/css/common.css",
"website/index.html"
]
s.has_rdoc = true
s.homepage = %q{http://httparty.rubyforge.org}
s.post_install_message = %q{When you HTTParty, you must party hard!}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.rubyforge_project = %q{httparty}
s.rubygems_version = %q{1.3.5}
s.summary = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
s.test_files = [
"spec/httparty/cookie_hash_spec.rb",
"spec/httparty/parser_spec.rb",
"spec/httparty/request_spec.rb",
"spec/httparty/response_spec.rb",
"spec/httparty_spec.rb",
"spec/spec_helper.rb",
"examples/aaws.rb",
"examples/basic.rb",
"examples/custom_parsers.rb",
"examples/delicious.rb",
"examples/google.rb",
"examples/rubyurl.rb",
Expand All @@ -93,17 +98,30 @@ Gem::Specification.new do |s|

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
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.1"])
s.add_development_dependency(%q<rspec>, ["= 1.2.8"])
s.add_development_dependency(%q<activesupport>, ["~> 2.3"])
s.add_development_dependency(%q<cucumber>, ["~> 0.4"])
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"])
else
s.add_dependency(%q<crack>, [">= 0.1.1"])
s.add_dependency(%q<rspec>, ["= 1.2.8"])
s.add_dependency(%q<activesupport>, ["~> 2.3"])
s.add_dependency(%q<cucumber>, ["~> 0.4"])
s.add_dependency(%q<fakeweb>, ["~> 1.2"])
s.add_dependency(%q<mongrel>, ["~> 1.1"])
s.add_dependency(%q<rspec>, ["= 1.2.9"])
end
else
s.add_dependency(%q<crack>, [">= 0.1.1"])
s.add_dependency(%q<rspec>, ["= 1.2.8"])
s.add_dependency(%q<activesupport>, ["~> 2.3"])
s.add_dependency(%q<cucumber>, ["~> 0.4"])
s.add_dependency(%q<fakeweb>, ["~> 1.2"])
s.add_dependency(%q<mongrel>, ["~> 1.1"])
s.add_dependency(%q<rspec>, ["= 1.2.9"])
end
end

2 changes: 1 addition & 1 deletion lib/httparty/version.rb
@@ -1,3 +1,3 @@
module HTTParty #:nodoc:
Version = '0.4.5'
Version = '0.5.0'
end

0 comments on commit d6b351f

Please sign in to comment.