Created
August 26, 2010 04:59
-
-
Save x0bandeira/550846 to your computer and use it in GitHub Desktop.
This file contains 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
class MyClass | |
def complex_property | |
@my_complex_property | |
end | |
def complex_property= value | |
#complex logic | |
@my_complex_property = revamped_value | |
end | |
def do_something_with_complex_property | |
return false unless @my_complex_property < 2 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment