Method: Eggshell::BlockHandler#continue_with
- Defined in:
- lib/eggshell/block-handler.rb
#continue_with(line) ⇒ Object
Determines if processing for the current type ends (e.g. a blank line usually terminates the block). continue; {DONE} to collect this line but end the block.
79 80 81 82 83 84 85 |
# File 'lib/eggshell/block-handler.rb', line 79 def continue_with(line) if line != nil && line != '' COLLECT else RETRY end end |