Sha256: 2ef8400260f13c1509f6deb6e517d5c1ed85d4f34aa4f6413bfd140664a702c8
Contents?: true
Size: 464 Bytes
Versions: 83
Compression:
Stored size: 464 Bytes
Contents
# File: lib/tenon/videos.rb # Adds configuration options for videos # eg. # # Tenon.configure do |config| # config.events.display = :calendar # end module Tenon class Configuration attr_accessor :events def events @events ||= EventConfiguration.new end class EventConfiguration attr_accessor :display def initialize @display = :list end def display @display.to_sym end end end end
Version data entries
83 entries across 83 versions & 1 rubygems