Skip to content

Instantly share code, notes, and snippets.

@charlesroper
Created February 17, 2010 14:56
Show Gist options
  • Select an option

  • Save charlesroper/306678 to your computer and use it in GitHub Desktop.

Select an option

Save charlesroper/306678 to your computer and use it in GitHub Desktop.
If we're on Windows, try to load win32console to enable colours
# If we're on Windows, try to load win32console to enable colours
# Add it to config/environment.rb or config/environments/development.rb
if RUBY_PLATFORM =~ /win32|mingw32/
begin
require 'win32console'
rescue LoadError
puts "=> WARNING: win32console gem is not installed, colors are disabled."
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment