14 lines
236 B
Ruby
14 lines
236 B
Ruby
class AsciicastWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
def perform(asciicast_id)
|
|
asciicast = Asciicast.find(asciicast_id)
|
|
AsciicastProcessor.new.process(asciicast)
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
# oh well...
|
|
end
|
|
|
|
end
|