You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/app/workers/asciicast_worker.rb

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