Skip to content

Instantly share code, notes, and snippets.

@nicolasblanco
Created February 23, 2017 19:39
Show Gist options
  • Select an option

  • Save nicolasblanco/ecb35c3be677cc4e24fb77fbfbbf1e9e to your computer and use it in GitHub Desktop.

Select an option

Save nicolasblanco/ecb35c3be677cc4e24fb77fbfbbf1e9e to your computer and use it in GitHub Desktop.
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