Skip to content

Instantly share code, notes, and snippets.

@code-later
Created May 1, 2014 12:33
Show Gist options
  • Save code-later/6a2ccc9d92690e192f5e to your computer and use it in GitHub Desktop.
Save code-later/6a2ccc9d92690e192f5e to your computer and use it in GitHub Desktop.
private: Keyword or Method #Ruby
class Foo
send :private
def bar
puts "I'm private"
end
end
Foo.new.bar
# private method `bar' called for #<Foo:0x00000102816480> (NoMethodError)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment