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 !
Removed stupid core extension. It was stupid trust me.
jnunemaker (author)
Sat Nov 08 07:41:32 -0800 2008
commit  fda012a3347d2633667e594015e94f119a341787
tree    b1497a5fe0095cc6b769a058f8b01f7ec72029f8
parent  30a65000adc8d503f3d96b0ca50873f894a4db1b
...
5
6
7
8
9
10
11
12
 
 
13
14
15
16
17
18
19
...
5
6
7
 
 
 
 
 
8
9
10
11
12
 
13
14
15
0
@@ -5,15 +5,11 @@ require 'ostruct'
0
 require 'rubygems'
0
 require 'active_support'
0
 
0
-$:.unshift(File.dirname(__FILE__)) unless
0
-  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
0
-
0
-dir = File.expand_path(File.join(File.dirname(__FILE__), 'httparty'))
0
-require dir + '/core_ext'
0
+directory = File.dirname(__FILE__)
0
+$:.unshift(directory) unless $:.include?(directory) || $:.include?(File.expand_path(directory))
0
 
0
 module HTTParty
0
   class UnsupportedFormat < StandardError; end
0
-
0
   class RedirectionTooDeep < StandardError; end
0
   
0
   def self.included(base)

Comments