Skip to content

Instantly share code, notes, and snippets.

@narma
Created August 15, 2015 00:43
Show Gist options
  • Select an option

  • Save narma/e87b76a51e1610350c4a to your computer and use it in GitHub Desktop.

Select an option

Save narma/e87b76a51e1610350c4a to your computer and use it in GitHub Desktop.
ruby keywordize keys
class Hash
def keywordize!
self.keys.each do |k|
if k.class == String
self[k.to_sym] = self[k]
self.delete(k)
end
end
self
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment