class FakePipe::AnyBlock
Catch all text block. Generic base state while a more interesting text block is not present.
Public Instance Methods
end_text?(line)
click to toggle source
# File lib/fake_pipe/any_block.rb, line 14 def end_text?(line) true end
match_start_text(line)
click to toggle source
# File lib/fake_pipe/any_block.rb, line 6 def match_start_text(line) true end
parse(line)
click to toggle source
# File lib/fake_pipe/any_block.rb, line 18 def parse(line) line end
start_text?()
click to toggle source
# File lib/fake_pipe/any_block.rb, line 10 def start_text? true end