diff --git a/History b/History index 707c0ba..4dc28a1 100644 --- a/History +++ b/History @@ -1,3 +1,7 @@ +== 0.2.0 2008-12-07 +* 1 major enhancement + * Removed ActiveSupport as a dependency. Now requires json gem for json deserialization and uses an included class to do the xml parsing. + == 0.1.8 2008-11-30 * 3 major enhancements * Moved base_uri normalization into request class and out of httparty module, fixing diff --git a/Manifest b/Manifest index 37235d9..7374b65 100644 --- a/Manifest +++ b/Manifest @@ -6,6 +6,7 @@ examples/rubyurl.rb examples/twitter.rb examples/whoismyrep.rb History +httparty.gemspec lib/core_extensions.rb lib/httparty/exceptions.rb lib/httparty/request.rb diff --git a/httparty.gemspec b/httparty.gemspec index 99e7df2..0925722 100644 --- a/httparty.gemspec +++ b/httparty.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version= s.authors = ["John Nunemaker"] - s.date = %q{2008-12-06} + s.date = %q{2008-12-07} s.description = %q{Makes http fun! Also, makes consuming restful web services dead easy.} s.email = %q{nunemaker@gmail.com} s.extra_rdoc_files = ["lib/core_extensions.rb", "lib/httparty/exceptions.rb", "lib/httparty/request.rb", "lib/httparty/version.rb", "lib/httparty.rb", "lib/module_level_inheritable_attributes.rb", "README"]