Class: Groonga::QueryLog::Analyzer::ConsoleReporter::MixColor

Inherits:
Object
  • Object
show all
Defined in:
lib/groonga/query-log/analyzer/reporter/console.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(colors) ⇒ MixColor

Returns a new instance of MixColor.



104
105
106
# File 'lib/groonga/query-log/analyzer/reporter/console.rb', line 104

def initialize(colors)
  @colors = colors
end

Instance Attribute Details

#colorsObject (readonly)

Returns the value of attribute colors.



103
104
105
# File 'lib/groonga/query-log/analyzer/reporter/console.rb', line 103

def colors
  @colors
end

Instance Method Details

#+(other) ⇒ Object



118
119
120
# File 'lib/groonga/query-log/analyzer/reporter/console.rb', line 118

def +(other)
  self.class.new([self, other])
end

#==(other) ⇒ Object



122
123
124
# File 'lib/groonga/query-log/analyzer/reporter/console.rb', line 122

def ==(other)
  self.class === other and colors == other.colors
end

#escape_sequenceObject



114
115
116
# File 'lib/groonga/query-log/analyzer/reporter/console.rb', line 114

def escape_sequence
  "\e[#{sequence.join(';')}m"
end

#sequenceObject



108
109
110
111
112
# File 'lib/groonga/query-log/analyzer/reporter/console.rb', line 108

def sequence
  @colors.inject([]) do |result, color|
    result + color.sequence
  end
end