Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/tabbyx/core/config.rb

Instance Method Summary collapse

Instance Method Details

#stringifyObject



4
5
6
7
8
9
# File 'lib/tabbyx/core/config.rb', line 4

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