Skip to content

Instantly share code, notes, and snippets.

@dbarrionuevo
Created March 25, 2014 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dbarrionuevo/9763446 to your computer and use it in GitHub Desktop.
Save dbarrionuevo/9763446 to your computer and use it in GitHub Desktop.
# Which one is your preferred syntax?
# Indentation 1
class Dummy
def public_method
end
private
def private_method
end
end
# Or Indentation 2
class Dummy
def public_method
end
private
def private_method
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment