Sha256: be864820bdebd7789b155e7cdd1fa20ac3908b3e3852d9c94f3ca5df6c937e6e
Contents?: true
Size: 411 Bytes
Versions: 19
Compression:
Stored size: 411 Bytes
Contents
# File: lib/forge/videos.rb # Adds configuration options for videos # eg. # # Forge.configure do |config| # config.videos.zencoder_api_key = '123xyz' # config.videos.zencoder_bucket = 'development' # end module Forge class Configuration def videos @videos ||= VideoConfiguration.new end class VideoConfiguration attr_accessor :zencoder_api_key, :zencoder_bucket end end end
Version data entries
19 entries across 19 versions & 1 rubygems