asciinema.org/app/models/playback_options.rb
2014-08-09 13:10:07 +02:00

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