Last active
December 23, 2015 08:09
-
-
Save ngpestelos/6606146 to your computer and use it in GitHub Desktop.
class boilerplate code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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