Skip to content

Instantly share code, notes, and snippets.

@jgaskins
Created June 25, 2012 08:56
Show Gist options
  • Save jgaskins/2987477 to your computer and use it in GitHub Desktop.
Save jgaskins/2987477 to your computer and use it in GitHub Desktop.
Private attr_{reader,writer,accessor} methods
class Foo
private
attr_reader :bar
end
p Foo.new.bar # => Chucks an exception for private method 'bar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment