Module: Coradoc::Output::CoradocTreeDebug
- Defined in:
- lib/coradoc/output/coradoc_tree_debug.rb
Class Method Summary collapse
- .processor_execute(input, _options = {}) ⇒ Object
- .processor_id ⇒ Object
- .processor_match?(filename) ⇒ Boolean
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, = {}) out = StringIO.new PP.pp(input, out) { nil => out.string } end |
.processor_id ⇒ Object
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
7 8 9 |
# File 'lib/coradoc/output/coradoc_tree_debug.rb', line 7 def self.processor_match?(filename) false end |