Skip to content

Instantly share code, notes, and snippets.

@mkdynamic
Created January 27, 2012 04:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkdynamic/1687031 to your computer and use it in GitHub Desktop.
Save mkdynamic/1687031 to your computer and use it in GitHub Desktop.
# Don't hide branches in your logic, like this:
def foo
return bar if thing
stuff
end
# Do this instead:
def foo
if thing
bar
else
stuff
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment