Skip to content

Commit

Permalink
Fixed typecast class variable naming conflict.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnunemaker committed Dec 23, 2008
1 parent 0ec7416 commit e73bdb9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions 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
Expand Down
4 changes: 2 additions & 2 deletions lib/core_extensions.rb
Expand Up @@ -100,11 +100,11 @@ def self.typecasts=(obj)
end

def self.available_typecasts
@@typecasts
@@available_typecasts
end

def self.available_typecasts=(obj)
@@typecasts = obj
@@available_typecasts = obj
end

self.typecasts = {}
Expand Down
2 changes: 1 addition & 1 deletion lib/httparty/version.rb
@@ -1,3 +1,3 @@
module HTTParty
Version = '0.2.2'
Version = '0.2.3'
end

0 comments on commit e73bdb9

Please sign in to comment.