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/services/snapshot_creator.rb

18 lines
294 B
Ruby

class SnapshotCreator
def create(width, height, stdout, duration)
terminal = Terminal.new(width, height)
seconds = (duration / 2).to_i
stdout.each_until(seconds) do |delay, data|
terminal.feed(data)
end
terminal.snapshot
ensure
terminal.release
end
end