Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lancejpollard/517594 to your computer and use it in GitHub Desktop.
Save lancejpollard/517594 to your computer and use it in GitHub Desktop.
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