Skip to content

Instantly share code, notes, and snippets.

@havenwood

havenwood/foo.rb Secret

Created May 29, 2020 19:10
Show Gist options
  • Save havenwood/81cbf35781c27eb27d2ff658f7ba5e02 to your computer and use it in GitHub Desktop.
Save havenwood/81cbf35781c27eb27d2ff658f7ba5e02 to your computer and use it in GitHub Desktop.
class Foo
attr_reader :foo
def example
@foo # instance variable
foo # implicit method call on self
self.foo # explicit method call on self
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment