Skip to content

Instantly share code, notes, and snippets.

@johnmcaliley
Created September 21, 2011 03:01
Show Gist options
  • Save johnmcaliley/1231109 to your computer and use it in GitHub Desktop.
Save johnmcaliley/1231109 to your computer and use it in GitHub Desktop.
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