Sha256: cd97df43da43af3134add0ecc44dcd273fd8956edd8a3f9aeed5971f0683d02d
Contents?: true
Size: 950 Bytes
Versions: 13
Compression:
Stored size: 950 Bytes
Contents
# frozen_string_literal: true module RuboCop module Formatter # This mix-in module provides string coloring methods for terminals. # It automatically disables coloring if coloring is disabled in the process # globally or the formatter's output is not a terminal. module Colorizable def rainbow @rainbow ||= begin rainbow = Rainbow.new if options[:color] rainbow.enabled = true elsif options[:color] == false || !output.tty? rainbow.enabled = false end rainbow end end def colorize(string, *args) rainbow.wrap(string).color(*args) end [ :black, :red, :green, :yellow, :blue, :magenta, :cyan, :white ].each do |color| define_method(color) do |string| colorize(string, color) end end end end end
Version data entries
13 entries across 13 versions & 2 rubygems