asciinema.org/app/models/playback_options.rb

13 lines
349 B
Ruby
Raw Normal View History

class PlaybackOptions
include Virtus.model
attribute :speed, Float, default: 1.0
attribute :size, String, default: 'small'
attribute :autoplay, Boolean, default: false
2014-08-09 11:09:54 +00:00
attribute :loop, Boolean, default: false
attribute :benchmark, Boolean, default: false
attribute :theme, String, default: Theme::DEFAULT
end