asciinema.org/app/helpers/asciicasts_helper.rb
2014-02-01 11:25:47 +01:00

15 lines
321 B
Ruby

module AsciicastsHelper
def player(asciicast, options = PlaybackOptions.new)
render 'asciicasts/player', asciicast: serialized_asciicast(asciicast),
options: options
end
private
def serialized_asciicast(asciicast)
AsciicastSerializer.new(asciicast).to_json
end
end