Class: Array

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

Instance Method Summary collapse

Instance Method Details

#to_hshObject



29
30
31
32
33
# File 'lib/support/extensions.rb', line 29

def to_hsh
  h = Hash.new
  each { |k, v| h[k] = v }
  h
end