Skip to content

Instantly share code, notes, and snippets.

@miah
Created October 23, 2014 21:34
Show Gist options
  • Save miah/b100b72daea0f758dc18 to your computer and use it in GitHub Desktop.
Save miah/b100b72daea0f758dc18 to your computer and use it in GitHub Desktop.
# Good
node.default[:foo] = {
biz: ‘this’,
baz: ‘is’,
barf: ‘better’
}
# Bad
node.default[:foo][:biz] = 'this'
node.default[:foo][:baz] = 'is'
node.default[:foo][:bar] = 'awful'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment