Class: Hash

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

Instance Method Summary collapse

Instance Method Details

#to_struct(struct_name) ⇒ Object



2
3
4
# File 'lib/extensions/hash.rb', line 2

def to_struct(struct_name)
  Struct.new(struct_name,*keys).new(*values)
end