Skip to content

Instantly share code, notes, and snippets.

@matsubo
Created June 21, 2014 03:38
Show Gist options
  • Save matsubo/c36fe4e4e4b348a73781 to your computer and use it in GitHub Desktop.
Save matsubo/c36fe4e4e4b348a73781 to your computer and use it in GitHub Desktop.
meta programming
class << Time
alias_method :now_original, :now
def now
puts 'override'
end
end
puts Time.now
puts Time.now_original
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment