Skip to content

Instantly share code, notes, and snippets.

@pashagray
Last active May 24, 2016 08:46
Show Gist options
  • Save pashagray/8bf68108b3161f728289252d5f8cf199 to your computer and use it in GitHub Desktop.
Save pashagray/8bf68108b3161f728289252d5f8cf199 to your computer and use it in GitHub Desktop.
module Roarable
def roar!
puts 'AGRH!!!!'
end
end
class Time
include Roarable
end
time = Time.new(2016,1,1)
puts time.roar!
#=> AGRH!!!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment