Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/sirportly/extensions.rb

Instance Method Summary collapse

Instance Method Details

#stringify_keysObject



2
3
4
5
6
7
# File 'lib/sirportly/extensions.rb', line 2

def stringify_keys
  inject({}) do |options, (key, value)|
    options[key.to_s] = value
    options
  end
end