Class: StubHarvester
Instance Method Summary
collapse
Methods inherited from Harvester
#_harvest, #_result
Methods inherited from IOAble
#debug!, #debug?, #get_option, #halt!, #job=, #log, #set_option
Constructor Details
313
314
315
|
# File 'lib/LRH.rb', line 313
def initialize
@result = ""
end
|
Instance Method Details
#harvest(partial) ⇒ Object
317
318
319
|
# File 'lib/LRH.rb', line 317
def harvest(partial)
@result += partial.to_s + "\n"
end
|
#result ⇒ Object
321
322
323
|
# File 'lib/LRH.rb', line 321
def result
return @result
end
|