Skip to content

Instantly share code, notes, and snippets.

@jamesdaniels
Forked from joefiorini/private.rb
Created June 27, 2011 15:24
Show Gist options
  • Save jamesdaniels/1049087 to your computer and use it in GitHub Desktop.
Save jamesdaniels/1049087 to your computer and use it in GitHub Desktop.
Indent methods under private?
class Blah
private
def method1
end
def method2
end
end
# vs.
class Blah
private
def method1
end
def method2
end
end
# what I do
class Blah
def public1
end
private
def method1
end
def method2
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment