Skip to content

Instantly share code, notes, and snippets.

@hotgazpacho
Created June 23, 2009 03:05
Show Gist options
  • Save hotgazpacho/134332 to your computer and use it in GitHub Desktop.
Save hotgazpacho/134332 to your computer and use it in GitHub Desktop.
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