Skip to content

Instantly share code, notes, and snippets.

@rtomayko
Created January 30, 2009 01:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save rtomayko/54876 to your computer and use it in GitHub Desktop.
Save rtomayko/54876 to your computer and use it in GitHub Desktop.
# BAD:
foo.bar = 25
foo.biz = 'Hello World'
foo.bazzle = 42
# GOOD:
foo.bar = 25
foo.biz = 'Hello World'
foo.bazzle = 42
# BAD:
Foo.something :bar, :baz => 'bling',
:bizzle => 'boink',
:bowang => '...'
# GOOD:
Foo.something :bar,
:baz => 'bling',
:bizzle => 'boink',
:bowang => '...'
# What's the underlying principle at work here?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment