Sha256: 74c7c7f48dc4bde7e9cbee06a72e9f3afd1fc967569719f9d439fa59a14ee28c
Contents?: true
Size: 463 Bytes
Versions: 19
Compression:
Stored size: 463 Bytes
Contents
# File: lib/forge/videos.rb # Adds configuration options for videos # eg. # # Forge.configure do |config| # config.events.display = :calendar # end module Forge 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
19 entries across 19 versions & 1 rubygems