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.1.5 release.
jnunemaker (author)
Fri Nov 14 11:06:55 -0800 2008
commit  343ac9ca2cbd060003fdb0fea053bfd146bfdad8
tree    7faf9900edf2990a701990f2ba3f9d9cda09d225
parent  9931e2a20dd579289407e28d1631ef319a5d3ad7
...
 
 
 
 
1
2
 
3
4
5
...
1
2
3
4
5
 
6
7
8
9
0
@@ -1,5 +1,9 @@
0
+== 0.1.5 2008-11-14
0
+* 1 major enhancement
0
+  * Refactored send request method out into its own object.
0
+  
0
 == 0.1.4 2008-11-08
0
-* 2 major enhancements:
0
+* 3 major enhancements:
0
   * Removed some cruft
0
   * Added ability to follow redirects automatically and turn that off (Alex Vollmer)
0
 
...
13
14
15
 
16
17
18
19
20
21
22
 
23
24
25
...
13
14
15
16
17
18
19
20
21
22
 
23
24
25
26
0
@@ -13,13 +13,14 @@ examples/twitter.rb
0
 examples/whoismyrep.rb
0
 httparty.gemspec
0
 lib/httparty.rb
0
+lib/httparty/request.rb
0
 lib/httparty/version.rb
0
 script/console
0
 script/destroy
0
 script/generate
0
 script/txt2html
0
 setup.rb
0
-spec/hash_spec.rb
0
+spec/httparty/request_spec.rb
0
 spec/httparty_spec.rb
0
 spec/spec.opts
0
 spec/spec_helper.rb
...
 
 
1
2
3
 
4
5
6
7
 
8
9
10
11
 
12
13
14
15
16
17
18
 
19
20
21
22
23
24
25
 
26
27
28
...
1
2
3
4
 
5
6
7
8
 
9
10
11
12
 
13
14
15
16
17
18
19
 
20
21
22
23
24
25
26
 
27
28
29
30
0
@@ -1,28 +1,30 @@
0
+# -*- encoding: utf-8 -*-
0
+
0
 Gem::Specification.new do |s|
0
   s.name = %q{httparty}
0
-  s.version = "0.1.4"
0
+  s.version = "0.1.5"
0
 
0
   s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
0
   s.authors = ["John Nunemaker"]
0
-  s.date = %q{2008-11-08}
0
+  s.date = %q{2008-11-14}
0
   s.description = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
0
   s.email = ["nunemaker@gmail.com"]
0
   s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt"]
0
-  s.files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "Rakefile", "config/hoe.rb", "config/requirements.rb", "examples/aaws.rb", "examples/delicious.rb", "examples/google.rb", "examples/twitter.rb", "examples/whoismyrep.rb", "httparty.gemspec", "lib/httparty.rb", "lib/httparty/version.rb", "script/console", "script/destroy", "script/generate", "script/txt2html", "setup.rb", "spec/hash_spec.rb", "spec/httparty_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/website.rake", "website/css/common.css", "website/index.html"]
0
+  s.files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "Rakefile", "config/hoe.rb", "config/requirements.rb", "examples/aaws.rb", "examples/delicious.rb", "examples/google.rb", "examples/twitter.rb", "examples/whoismyrep.rb", "httparty.gemspec", "lib/httparty.rb", "lib/httparty/request.rb", "lib/httparty/version.rb", "script/console", "script/destroy", "script/generate", "script/txt2html", "setup.rb", "spec/httparty/request_spec.rb", "spec/httparty_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/website.rake", "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!}
0
   s.rdoc_options = ["--main", "README.txt"]
0
   s.require_paths = ["lib"]
0
   s.rubyforge_project = %q{httparty}
0
-  s.rubygems_version = %q{1.2.0}
0
+  s.rubygems_version = %q{1.3.1}
0
   s.summary = %q{Makes http fun! Also, makes consuming restful web services dead easy.}
0
 
0
   if s.respond_to? :specification_version then
0
     current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
0
     s.specification_version = 2
0
 
0
-    if current_version >= 3 then
0
+    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
0
       s.add_runtime_dependency(%q<activesupport>, [">= 2.1"])
0
       s.add_development_dependency(%q<hoe>, [">= 1.8.0"])
0
     else
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module HTTParty
0
   module VERSION #:nodoc:
0
     MAJOR = 0
0
     MINOR = 1
0
-    TINY  = 4
0
+    TINY  = 5
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end

Comments