Created
June 21, 2014 03:38
-
-
Save matsubo/c36fe4e4e4b348a73781 to your computer and use it in GitHub Desktop.
meta programming
This file contains hidden or 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
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