Skip to content

Instantly share code, notes, and snippets.

@nuc
Created November 1, 2016 13:27
Show Gist options
  • Save nuc/fc1732861399a45a6950dccd2ef8e1ad to your computer and use it in GitHub Desktop.
Save nuc/fc1732861399a45a6950dccd2ef8e1ad to your computer and use it in GitHub Desktop.
class DeepStruct < OpenStruct
def initialize(hash=nil)
@table = {}
@hash_table = {}
if hash
hash.each do |k,v|
@table[k.to_sym] = (v.is_a?(Hash) ? self.class.new(v) : v)
@hash_table[k.to_sym] = v
new_ostruct_member(k)
end
end
end
def to_h
@hash_table
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment