Created
February 23, 2017 19:39
-
-
Save nicolasblanco/ecb35c3be677cc4e24fb77fbfbbf1e9e 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
| class Foo | |
| def self.bar | |
| 42 | |
| end | |
| private | |
| def self.private_bar | |
| "oh noes" | |
| end | |
| end | |
| Foo.bar | |
| # => 42 | |
| Foo.private_bar | |
| # => "oh noes" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment