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 !
shortened directory to dir. why not...
jnunemaker (author)
Fri Dec 05 14:17:31 -0800 2008
commit  7834cb9ca210bed3ef0fdb0e8156e3471121ce73
tree    0f2f10d0d20d74a4d5c372292c00f01229ccbf04
parent  6b9a9c85d11b87088192cd2ecd72fa8cabe97c02
...
1
2
3
4
5
6
7
8
9
 
 
10
11
12
...
1
2
3
 
4
5
6
 
 
7
8
9
10
11
0
@@ -1,12 +1,11 @@
0
 require 'net/http'
0
 require 'net/https'
0
 require 'uri'
0
-require 'ostruct'
0
 require 'rubygems'
0
 require 'active_support'
0
 
0
-directory = File.dirname(__FILE__)
0
-$:.unshift(directory) unless $:.include?(directory) || $:.include?(File.expand_path(directory))
0
+dir = File.dirname(__FILE__)
0
+$:.unshift(dir) unless $:.include?(dir) || $:.include?(File.expand_path(dir))
0
 
0
 require 'httparty/request'
0
 

Comments