lib/cobweb_finished_job.rb in cobweb-1.0.26 vs lib/cobweb_finished_job.rb in cobweb-1.0.27

- old
+ new

@@ -1,14 +1,14 @@ # Dummy resque job that executes at the end of the crawl if none are specified class CobwebFinishedJob - require "ap" + #require "ap" @queue = :cobweb_finished_job # perform method for resque to execute def self.perform(statistics) puts "Dummy Finished Job" - ap statistics + #ap statistics end end