Created
March 19, 2014 00:33
-
-
Save tonyc/9633182 to your computer and use it in GitHub Desktop.
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
### First style | |
class Something | |
def foo | |
"foo" | |
end | |
protected | |
def bar | |
"bar" | |
end | |
private | |
def baz | |
"baz" | |
end | |
end | |
### Second | |
class Something | |
def foo | |
"foo" | |
end | |
protected | |
def bar | |
"bar" | |
end | |
private | |
def baz | |
"baz" | |
end | |
end | |
### Third (Rails?) | |
class Something | |
def foo | |
"foo" | |
end | |
protected | |
def bar | |
"bar" | |
end | |
private | |
def baz | |
"baz" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment