From 4790c8789d11ea530baab66371a3ad36b879ab50 Mon Sep 17 00:00:00 2001 From: John Nunemaker Date: Wed, 28 Jan 2009 14:52:40 -0500 Subject: [PATCH] Bumped version and prepped for release. --- Manifest | 3 +++ httparty.gemspec | 4 ++-- lib/httparty/version.rb | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Manifest b/Manifest index 6e00ba9..beee63b 100644 --- a/Manifest +++ b/Manifest @@ -11,6 +11,7 @@ httparty.gemspec lib/core_extensions.rb lib/httparty/exceptions.rb lib/httparty/request.rb +lib/httparty/response.rb lib/httparty/version.rb lib/httparty.rb lib/module_level_inheritable_attributes.rb @@ -21,9 +22,11 @@ README setup.rb spec/as_buggery_spec.rb spec/fixtures/delicious.xml +spec/fixtures/empty.xml spec/fixtures/google.html spec/fixtures/twitter.json spec/fixtures/twitter.xml +spec/fixtures/undefined_method_add_node_for_nil.xml spec/httparty/request_spec.rb spec/httparty_spec.rb spec/spec.opts diff --git a/httparty.gemspec b/httparty.gemspec index 8bccc75..f565377 100644 --- a/httparty.gemspec +++ b/httparty.gemspec @@ -2,11 +2,11 @@ Gem::Specification.new do |s| s.name = %q{httparty} - s.version = "0.2.6" + s.version = "0.2.7" s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version= s.authors = ["John Nunemaker"] - s.date = %q{2009-01-05} + s.date = %q{2009-01-28} 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} diff --git a/lib/httparty/version.rb b/lib/httparty/version.rb index 4d53c7d..5ba758f 100644 --- a/lib/httparty/version.rb +++ b/lib/httparty/version.rb @@ -1,3 +1,3 @@ module HTTParty - Version = '0.2.6' + Version = '0.2.7' end