Class: RailsSpider::ParserJob

Inherits:
ApplicationJob show all
Defined in:
app/jobs/the_spider/parser_job.rb

Instance Method Summary collapse

Instance Method Details

#perform(work_id) ⇒ Object



5
6
7
8
# File 'app/jobs/the_spider/parser_job.rb', line 5

def perform(work_id)
  work = Work.find work_id
  work.parse
end