Class: CobwebProcessJob
- Inherits:
-
Object
- Object
- CobwebProcessJob
- Defined in:
- lib/cobweb_process_job.rb
Overview
Dummy resque process job that is ran if none are specified
Class Method Summary collapse
-
.perform(content) ⇒ Object
Resque perform method.
Class Method Details
.perform(content) ⇒ Object
Resque perform method
8 9 10 11 12 13 14 |
# File 'lib/cobweb_process_job.rb', line 8 def self.perform(content) content = HashUtil.deep_symbolize_keys(content) puts "Dummy Processing for #{content[:url]}" #ap content.keys end |