Class: FallbackParser
Instance Attribute Summary collapse
-
#nextParser ⇒ Object
Returns the value of attribute nextParser.
Instance Method Summary collapse
Methods inherited from Parser
Constructor Details
This class inherits a constructor from Parser
Instance Attribute Details
#nextParser ⇒ Object
Returns the value of attribute nextParser.
7 8 9 |
# File 'lib/Parsers/FallbackParser.rb', line 7 def nextParser @nextParser end |
Instance Method Details
#parse(paragraph) ⇒ Object
8 9 10 11 |
# File 'lib/Parsers/FallbackParser.rb', line 8 def parse(paragraph) puts paragraph.type "#{paragraph.text}" end |