Module: Coradoc::Output::CoradocTreeDebug

Defined in:
lib/coradoc/output/coradoc_tree_debug.rb

Class Method Summary collapse

Class Method Details

.processor_execute(input, _options = {}) ⇒ Object



11
12
13
14
15
# File 'lib/coradoc/output/coradoc_tree_debug.rb', line 11

def self.processor_execute(input, _options = {})
  out = StringIO.new
  PP.pp(input, out)
  { nil => out.string }
end

.processor_idObject



3
4
5
# File 'lib/coradoc/output/coradoc_tree_debug.rb', line 3

def self.processor_id
  :coradoc_tree_debug
end

.processor_match?(filename) ⇒ Boolean

Returns:

  • (Boolean)


7
8
9
# File 'lib/coradoc/output/coradoc_tree_debug.rb', line 7

def self.processor_match?(filename)
  false
end