Class: Hash
Instance Method Summary collapse
Instance Method Details
#to_openstruct ⇒ Object
14 15 16 17 18 |
# File 'lib/core_ext.rb', line 14 def to_openstruct mapped = {} each{ |key,value| mapped[key] = value.to_openstruct } OpenStruct.new(mapped) end |