1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00

Prepped for 0.2.0 release.

This commit is contained in:
John Nunemaker 2008-12-07 00:02:51 -05:00
parent 05c388dc72
commit 941ef71531
3 changed files with 6 additions and 1 deletions

View file

@ -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

View file

@ -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

View file

@ -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"]