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.1 release.
jnunemaker (author)
Mon Dec 08 18:19:48 -0800 2008
commit  a0f8ade61b7ffb732ae0cdaf1262dc74b1f4e5dc
tree    4ba1b42a8a85a1b03724808873064e609d6d7350
parent  fc44b0b75a8ed321bc7f89f6dfa54fcae24b4723
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+== 0.2.1 2008-12-08
0
+* 1 bug fix
0
+  * Fixed that HTTParty was borking ActiveSupport and as such Rails (thanks to Rob Sanheim)
0
+
0
 == 0.2.0 2008-12-07
0
 * 1 major enhancement
0
   * Removed ActiveSupport as a dependency. Now requires json gem for json deserialization and uses an included class to do the xml parsing.
...
6
7
8
 
9
10
11
...
17
18
19
 
20
21
22
...
6
7
8
9
10
11
12
...
18
19
20
21
22
23
24
0
@@ -6,6 +6,7 @@ examples/rubyurl.rb
0
 examples/twitter.rb
0
 examples/whoismyrep.rb
0
 History
0
+httparty.gemspec
0
 lib/core_extensions.rb
0
 lib/httparty/exceptions.rb
0
 lib/httparty/request.rb
0
@@ -17,6 +18,7 @@ MIT-LICENSE
0
 Rakefile
0
 README
0
 setup.rb
0
+spec/as_buggery_spec.rb
0
 spec/fixtures/delicious.xml
0
 spec/fixtures/google.html
0
 spec/fixtures/twitter.json
...
2
3
4
5
 
6
7
8
9
 
10
11
12
13
 
14
15
16
...
2
3
4
 
5
6
7
8
 
9
10
11
12
 
13
14
15
16
0
@@ -2,15 +2,15 @@
0
 
0
 Gem::Specification.new do |s|
0
   s.name = %q{httparty}
0
-  s.version = "0.2.0"
0
+  s.version = "0.2.1"
0
 
0
   s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
0
   s.authors = ["John Nunemaker"]
0
-  s.date = %q{2008-12-07}
0
+  s.date = %q{2008-12-08}
0
   s.description = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
0
   s.email = %q{nunemaker@gmail.com}
0
   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"]
0
-  s.files = ["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/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.files = ["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
4
...
1
 
2
3
4
0
@@ -1,3 +1,3 @@
0
 module HTTParty
0
-  Version = '0.2.0'
0
+  Version = '0.2.1'
0
 end
0
\ No newline at end of file

Comments