Class: CobwebFinishedJob
- Inherits:
-
Object
- Object
- CobwebFinishedJob
- Defined in:
- lib/cobweb_finished_job.rb
Overview
Dummy resque job that executes at the end of the crawl if none are specified
Class Method Summary collapse
-
.perform(statistics) ⇒ Object
perform method for resque to execute.
Class Method Details
.perform(statistics) ⇒ Object
perform method for resque to execute
8 9 10 11 12 13 |
# File 'lib/cobweb_finished_job.rb', line 8 def self.perform(statistics) puts "Dummy Finished Job" #ap statistics end |