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 !
Fixed typecast class variable naming conflict.
jnunemaker (author)
Tue Dec 23 09:43:13 -0800 2008
commit  e73bdb92a5c68dc8d049a4d3799a0807019a6c2e
tree    d08112abacf20536d788012d3acd1141252c056f
parent  0ec741615406eb03b99314587d736f7d5019e63f
...
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
0
@@ -1,3 +1,7 @@
0
+== 0.2.3 2008-12-23
0
+* 1 bug fix
0
+  * Fixed typecasting class variable naming issue
0
+
0
 == 0.2.2 2008-12-08
0
 * 1 bug fix
0
   * Added the missing core extension hash method to_xml_attributes
...
100
101
102
103
 
104
105
106
107
 
108
109
110
...
100
101
102
 
103
104
105
106
 
107
108
109
110
0
@@ -100,11 +100,11 @@ class REXMLUtilityNode
0
   end
0
   
0
   def self.available_typecasts
0
-    @@typecasts
0
+    @@available_typecasts
0
   end
0
   
0
   def self.available_typecasts=(obj)
0
-    @@typecasts = obj
0
+    @@available_typecasts = obj
0
   end
0
 
0
   self.typecasts = {}
...
1
2
 
3
4
...
1
 
2
3
4
0
@@ -1,3 +1,3 @@
0
 module HTTParty
0
-  Version = '0.2.2'
0
+  Version = '0.2.3'
0
 end
0
\ No newline at end of file

Comments