mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
Fixed typecast class variable naming conflict.
This commit is contained in:
parent
0ec7416154
commit
e73bdb92a5
3 changed files with 7 additions and 3 deletions
4
History
4
History
|
@ -1,3 +1,7 @@
|
|||
== 0.2.3 2008-12-23
|
||||
* 1 bug fix
|
||||
* Fixed typecasting class variable naming issue
|
||||
|
||||
== 0.2.2 2008-12-08
|
||||
* 1 bug fix
|
||||
* Added the missing core extension hash method to_xml_attributes
|
||||
|
|
|
@ -100,11 +100,11 @@ class REXMLUtilityNode
|
|||
end
|
||||
|
||||
def self.available_typecasts
|
||||
@@typecasts
|
||||
@@available_typecasts
|
||||
end
|
||||
|
||||
def self.available_typecasts=(obj)
|
||||
@@typecasts = obj
|
||||
@@available_typecasts = obj
|
||||
end
|
||||
|
||||
self.typecasts = {}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module HTTParty
|
||||
Version = '0.2.2'
|
||||
Version = '0.2.3'
|
||||
end
|
Loading…
Add table
Reference in a new issue