Skip to content

Instantly share code, notes, and snippets.

View lakshminarayanan's full-sized avatar

lakshminarayanan

View GitHub Profile
@lakshminarayanan
lakshminarayanan / development.rb
Created October 4, 2012 07:45
Disable colors in rails console
# disappear the annoying ANSI codes for PowerShell and cmd
if RUBY_PLATFORM =~ /mswin|mingw/i
ActiveSupport::LogSubscriber.colorize_logging = false
end