Skip to content

Instantly share code, notes, and snippets.

@bitops
Created January 16, 2015 22:26
Show Gist options
  • Select an option

  • Save bitops/594592caccfd048304de to your computer and use it in GitHub Desktop.

Select an option

Save bitops/594592caccfd048304de to your computer and use it in GitHub Desktop.
{
foo: {
a: 42,
b: {
c: [1, 2, 3]
d: 88
}
}
}
f = Foo.new # imagine it's populated with data
f.a # 42
f.b.c # [1, 2, 3]
f.b.d # 88
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment