Skip to content

Instantly share code, notes, and snippets.

@luislavena
Forked from dbarrionuevo/private.rb
Last active August 29, 2015 13:57
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 luislavena/9763457 to your computer and use it in GitHub Desktop.
Save luislavena/9763457 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
# neither, this rocks:
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