We got nominated! Help us out and vote for GitHub as Best Bootstrapped Startup of 2008. (You can vote once a day.) [ hide ]

public
Rubygem
Description: Makes http fun! Also, makes consuming restful web services dead easy.
Clone URL: git://github.com/jnunemaker/httparty.git
Click here to lend your support to: httparty and make a donation at www.pledgie.com !
Updated for new release. Added rake task to help with prepping for 
release.
jnunemaker (author)
Sat Aug 09 12:20:32 -0700 2008
commit  427958ade7f383a501927b429291ba7e513f97a9
tree    62ae1c298e1d78980e6b86387d8921587329ea01
parent  a3f744b2bbb3c235b05bd9c2cd92fcf74bb6c3d8
...
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
0
@@ -1,3 +1,8 @@
0
+== 0.1.2 2008-08-09
0
+
0
+* 1 major enhancement:
0
+ * default_params were not being appended to query string if option[:query] was blank
0
+
0
 == 0.1.1 2008-07-30
0
 
0
 * 2 major enhancement:
...
1
2
3
 
4
5
6
7
 
8
9
10
...
30
31
32
33
 
34
...
1
2
 
3
4
5
6
 
7
8
9
10
...
30
31
32
 
33
34
0
@@ -1,10 +1,10 @@
0
 Gem::Specification.new do |s|
0
   s.name = %q{httparty}
0
- s.version = "0.1.1"
0
+ s.version = "0.1.2"
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-07-31}
0
+ s.date = %q{2008-08-09}
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
@@ -30,4 +30,4 @@ Gem::Specification.new do |s|
0
   else
0
     s.add_dependency(%q<activesupport>, [">= 2.1"])
0
   end
0
-end
0
+end
0
\ No newline at end of file
...
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 = 1
0
+ TINY = 2
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
 
 
 
 
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
9
10
11
12
0
@@ -1,3 +1,12 @@
0
+desc 'Preps the gem for a new release'
0
+task :prep_for_release do
0
+ require 'rio'
0
+ Rake::Task['manifest:refresh'].invoke
0
+ gemspec = %x[rake debug_gem]
0
+ lines = gemspec.split("\n")
0
+ rio('httparty.gemspec') < lines[1, lines.length-1].join("\n")
0
+end
0
+
0
 desc 'Release the website and new gem version'
0
 task :deploy => [:check_version, :website, :release] do
0
   puts "Remember to create SVN tag:"

Comments

    No one has commented yet.