Created
June 23, 2009 03:05
-
-
Save hotgazpacho/134332 to your computer and use it in GitHub Desktop.
This file contains 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
require 'mscorlib' | |
module Kernel | |
alias_method :original_puts, :puts | |
def puts(string = nil) | |
originalColor = System::Console.ForegroundColor | |
System::Console.ForegroundColor = System::ConsoleColor.Yellow | |
original_puts string | |
System::Console.ForegroundColor = originalColor | |
nil | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment