Skip to content

Instantly share code, notes, and snippets.

@bplaxco
Last active October 27, 2015 23:01
Show Gist options
  • Save bplaxco/d4e6f0d539fa52010ec9 to your computer and use it in GitHub Desktop.
Save bplaxco/d4e6f0d539fa52010ec9 to your computer and use it in GitHub Desktop.
An attempt of something like an OpenStruct in ruby
class OpenStruct(dict):
__getattr__= dict.__getitem__
__setattr__= dict.__setitem__
__delattr__= dict.__delitem__
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment