public
Rubygem
Description: Makes http fun! Also, makes consuming restful web services dead easy.
Homepage:
Clone URL: git://github.com/jnunemaker/httparty.git
Click here to lend your support to: httparty and make a donation at www.pledgie.com !
Prepped for 0.2.6 release.
jnunemaker (author)
Mon Jan 05 08:56:29 -0800 2009
commit  bb20657a46998f60c436b61d11d87501d3f7752f
tree    1e2b0a630353600ab3e76a7d8ae38762c399bae2
parent  90fe3888e2ace0cb1f681890c829384b4fc34afb
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+== 0.2.6 2009-01-05
0
+* 1 minor bug fix
0
+  * added explicit require of time as Time#parse failed outside of rails (willcodeforfoo)
0
+  
0
 == 0.2.5 2009-01-05
0
 * 1 major enhancement
0
   * Add command line interface to HTTParty (Alex Vollmer)
...
2
3
4
5
 
6
7
8
...
12
13
14
15
 
16
17
18
...
2
3
4
 
5
6
7
8
...
12
13
14
 
15
16
17
18
0
@@ -2,7 +2,7 @@
0
 
0
 Gem::Specification.new do |s|
0
   s.name = %q{httparty}
0
-  s.version = "0.2.5"
0
+  s.version = "0.2.6"
0
 
0
   s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
0
   s.authors = ["John Nunemaker"]
0
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
0
   s.email = %q{nunemaker@gmail.com}
0
   s.executables = ["httparty"]
0
   s.extra_rdoc_files = ["bin/httparty", "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"]
0
-  s.files = ["bin/httparty", "examples/aaws.rb", "examples/basic.rb", "examples/delicious.rb", "examples/google.rb", "examples/rubyurl.rb", "examples/twitter.rb", "examples/whoismyrep.rb", "History", "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", "Manifest", "MIT-LICENSE", "Rakefile", "README", "setup.rb", "spec/as_buggery_spec.rb", "spec/fixtures/delicious.xml", "spec/fixtures/google.html", "spec/fixtures/twitter.json", "spec/fixtures/twitter.xml", "spec/httparty/request_spec.rb", "spec/httparty_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "website/css/common.css", "website/index.html", "httparty.gemspec"]
0
+  s.files = ["bin/httparty", "examples/aaws.rb", "examples/basic.rb", "examples/delicious.rb", "examples/google.rb", "examples/rubyurl.rb", "examples/twitter.rb", "examples/whoismyrep.rb", "History", "httparty.gemspec", "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", "Manifest", "MIT-LICENSE", "Rakefile", "README", "setup.rb", "spec/as_buggery_spec.rb", "spec/fixtures/delicious.xml", "spec/fixtures/google.html", "spec/fixtures/twitter.json", "spec/fixtures/twitter.xml", "spec/httparty/request_spec.rb", "spec/httparty_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "website/css/common.css", "website/index.html"]
0
   s.has_rdoc = true
0
   s.homepage = %q{http://httparty.rubyforge.org}
0
   s.post_install_message = %q{When you HTTParty, you must party hard!}
...
1
2
 
3
...
1
 
2
3
0
@@ -1,3 +1,3 @@
0
 module HTTParty
0
-  Version = '0.2.5'
0
+  Version = '0.2.6'
0
 end

Comments