Last active
December 17, 2015 04:19
-
-
Save adgilfillan/5550085 to your computer and use it in GitHub Desktop.
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
def whip2 | |
if self.age < 28 | |
self.whip * 0.95 | |
else | |
self.whip * 1.05 | |
end | |
end | |
def whip3 | |
if self.age < 28 | |
self.whip2 * 0.95 | |
else | |
self.whip2 * 1.05 | |
end | |
end | |
def whip4 | |
if self.age < 28 | |
self.whip3 * 0.95 | |
else | |
self.whip3 * 1.05 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment