Created
August 18, 2013 22:23
-
-
Save haileys/6264342 to your computer and use it in GitHub Desktop.
This file contains 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
class Foo | |
public def my_public_method | |
1 + 2 | |
end | |
protected def my_protected_method | |
3 + 4 | |
end | |
private def my_private_method | |
5 + 6 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment