Class: Leftovers::Processors::Downcase

Inherits:
Object
  • Object
show all
Includes:
ComparableInstance
Defined in:
lib/leftovers/processors/downcase.rb

Instance Method Summary collapse

Methods included from ComparableInstance

#eql?, #hash

Constructor Details

#initialize(then_processor) ⇒ Downcase

Returns a new instance of Downcase.



8
9
10
11
12
# File 'lib/leftovers/processors/downcase.rb', line 8

def initialize(then_processor)
  @then_processor = then_processor

  freeze
end

Instance Method Details

#process(str, current_node, matched_node, acc) ⇒ Object



14
15
16
17
18
# File 'lib/leftovers/processors/downcase.rb', line 14

def process(str, current_node, matched_node, acc)
  return unless str

  @then_processor.process(str.downcase, current_node, matched_node, acc)
end