Created
September 21, 2011 03:01
-
-
Save johnmcaliley/1231109 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
module ActsAsCharlieSheen | |
module Base | |
def acts_as_charlie_sheen | |
include InstanceMethods | |
end | |
module InstanceMethods | |
def sheenify! | |
["WINNING!", | |
"TIGER BLOOD!", | |
"Boom, crush. Night, losers. Winning, duh.", | |
"I am on a drug. It's called Charlie Sheen.", | |
"I have defeated this earthworm with my words. Imagine what I would have done with my fire breathing fists.", | |
"You can't process me with a normal brain.", | |
"DUH!!!"].sample | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment