asciinema.org/app/workers/asciicast_worker.rb

14 lines
236 B
Ruby
Raw Normal View History

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