All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.rainbow-2.0.0.lib.rainbow.rb Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
require 'rainbow/global'
require 'rainbow/legacy'

module Rainbow

  def self.new
    Wrapper.new(global.enabled)
  end

  self.enabled = false unless STDOUT.tty? && STDERR.tty?
  self.enabled = false if ENV['TERM'] == 'dumb'
  self.enabled = true if ENV['CLICOLOR_FORCE'] == '1'

  # On Windows systems, try to load the local ANSI support library
  require 'rbconfig'
  if RbConfig::CONFIG['host_os'] =~ /mswin|mingw/
    begin
      require 'Win32/Console/ANSI'
    rescue LoadError
      self.enabled = false
    end
  end

end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy