-
-
Save mhfs/1265146 to your computer and use it in GitHub Desktop.
Indent methods under private?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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