Skip to content

Instantly share code, notes, and snippets.

@mhfs
Forked from joefiorini/private.rb
Created October 5, 2011 17:53
Show Gist options
  • Save mhfs/1265146 to your computer and use it in GitHub Desktop.
Save mhfs/1265146 to your computer and use it in GitHub Desktop.
Indent methods under private?
# 1
class Blah
private
def method1
end
def method2
end
end
# 2
class Blah
private
def method1
end
def method2
end
end
# 3
class Blah
def public_method
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