Class: Harvester
Instance Method Summary
collapse
Methods inherited from IOAble
#debug!, #debug?, #get_option, #halt!, #job=, #log, #set_option
Constructor Details
Returns a new instance of Harvester.
200
201
202
|
# File 'lib/LRH.rb', line 200
def initialize
super
end
|
Instance Method Details
#_harvest(partial) ⇒ Object
204
205
206
|
# File 'lib/LRH.rb', line 204
def _harvest(partial)
return harvest(partial)
end
|
#_result ⇒ Object
208
209
210
|
# File 'lib/LRH.rb', line 208
def _result
return result()
end
|
#harvest(partial) ⇒ Object
212
213
|
# File 'lib/LRH.rb', line 212
def harvest(partial)
end
|
#result ⇒ Object
215
216
217
|
# File 'lib/LRH.rb', line 215
def result
return nil
end
|