Skip to content

Instantly share code, notes, and snippets.

@havenwood

havenwood/foo.rb Secret

Created April 1, 2021 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save havenwood/5db3e2789c7e79c70576a58a5bdc6ca8 to your computer and use it in GitHub Desktop.
Save havenwood/5db3e2789c7e79c70576a58a5bdc6ca8 to your computer and use it in GitHub Desktop.
class Foo
attr_accessor :foo
def setter_variable
@foo = 42
end
def setter_method
self.foo = 42
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment