Created
August 10, 2010 16:56
-
-
Save lancejpollard/517594 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Hash | |
def recursively_symbolize_keys! | |
self.symbolize_keys! | |
self.values.each do |v| | |
if v.is_a? Hash | |
v.recursively_symbolize_keys! | |
elsif v.is_a? Array | |
v.recursively_symbolize_keys! | |
end | |
end | |
self | |
end | |
end | |
class Array | |
def recursively_symbolize_keys! | |
self.each do |item| | |
if item.is_a? Hash | |
item.recursively_symbolize_keys! | |
elsif item.is_a? Array | |
item.recursively_symbolize_keys! | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment