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/models/playback_options.rb

13 lines
349 B
Ruby

class PlaybackOptions
include Virtus.model
attribute :speed, Float, default: 1.0
attribute :size, String, default: 'small'
attribute :autoplay, Boolean, default: false
attribute :loop, Boolean, default: false
attribute :benchmark, Boolean, default: false
attribute :theme, String, default: Theme::DEFAULT
end