diff --git a/Manifest b/Manifest index deaccbf..a10d43c 100644 --- a/Manifest +++ b/Manifest @@ -30,7 +30,7 @@ lib/httparty.rb Manifest MIT-LICENSE Rakefile -README +README.rdoc setup.rb spec/fixtures/delicious.xml spec/fixtures/empty.xml @@ -38,13 +38,11 @@ spec/fixtures/google.html spec/fixtures/twitter.json spec/fixtures/twitter.xml spec/fixtures/undefined_method_add_node_for_nil.xml -spec/hash_spec.rb spec/httparty/cookie_hash_spec.rb spec/httparty/request_spec.rb spec/httparty/response_spec.rb spec/httparty_spec.rb spec/spec.opts spec/spec_helper.rb -spec/string_spec.rb website/css/common.css website/index.html diff --git a/httparty.gemspec b/httparty.gemspec index d45a8f9..726da60 100644 --- a/httparty.gemspec +++ b/httparty.gemspec @@ -2,11 +2,11 @@ Gem::Specification.new do |s| s.name = %q{httparty} - s.version = "0.4.3" + s.version = "0.4.4" s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version= s.authors = ["John Nunemaker"] - s.date = %q{2009-04-23} + s.date = %q{2009-07-19} 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} @@ -16,7 +16,7 @@ Gem::Specification.new do |s| 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 = ["--line-numbers", "--inline-source", "--title", "Httparty", "--main", "README"] + s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Httparty", "--main", "README.rdoc"] s.require_paths = ["lib"] s.rubyforge_project = %q{httparty} s.rubygems_version = %q{1.3.1} diff --git a/lib/httparty/version.rb b/lib/httparty/version.rb index fefa37a..a6dca80 100644 --- a/lib/httparty/version.rb +++ b/lib/httparty/version.rb @@ -1,3 +1,3 @@ module HTTParty #:nodoc: - Version = '0.4.3' + Version = '0.4.4' end