Skip to content

Instantly share code, notes, and snippets.

@ngpestelos
Last active December 23, 2015 08:09
Show Gist options
  • Save ngpestelos/6606146 to your computer and use it in GitHub Desktop.
Save ngpestelos/6606146 to your computer and use it in GitHub Desktop.
class boilerplate code
# see Metaprogramming Ruby, p. 103
class MyClass
def my_attribute=(value)
@my_attribute = value
end
def my_attribute
@my_attribute
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment