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/helpers/asciicasts_helper.rb

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