Skip to content

Instantly share code, notes, and snippets.

@aaronbrethorst
Created August 11, 2011 18:28
Show Gist options
  • Save aaronbrethorst/1140358 to your computer and use it in GitHub Desktop.
Save aaronbrethorst/1140358 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'active_support/core_ext'
class Fixnum
def score
self * 20
end
def and
self
end
def seven
self + 7
end
end
puts 4.score.and.seven.years.ago
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment