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
class Foo | |
public def my_public_method | |
1 + 2 | |
end | |
protected def my_protected_method | |
3 + 4 | |
end | |
def my_private_method |