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/lib/tasks/generators.rake

14 lines
297 B
Ruby

namespace :asciinema do
namespace :generate do
desc "Generate frames files"
task :frames => :environment do
updater = AsciicastFramesFileUpdater.new
Asciicast.where(stdout_frames: nil).find_each do |a|
puts a.id
updater.update(a)
end
end
end
end