Skip to content

Instantly share code, notes, and snippets.

@reggieb
Created March 13, 2017 12:24
Show Gist options
  • Save reggieb/5668bb1cfa6359a9e346f43e0ff9f55a to your computer and use it in GitHub Desktop.
Save reggieb/5668bb1cfa6359a9e346f43e0ff9f55a to your computer and use it in GitHub Desktop.
Add a `to_h` method to pre 2.1 ruby
unless [].respond_to? :to_h
class Array
def to_h
Hash[self]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment