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

17 lines
284 B
Ruby

class AsciicastWorker
include Sidekiq::Worker
def perform(asciicast_id)
asciicast = Asciicast.find(asciicast_id)
if asciicast.version == 0
AsciicastFramesFileUpdater.new.update(asciicast)
end
rescue ActiveRecord::RecordNotFound
# oh well...
end
end