class SprocketsCDN::Configuration

Public Class Methods

checked?() click to toggle source

attr_accessor :prodiver, :bucket, :access_key, :secret_key, :asset_host

# File lib/sprockets_cdn/configuration.rb, line 5
def self.checked?
  config.provider && config.bucket && config.access_key && config.secret_key && config.asset_host
end
config() click to toggle source
# File lib/sprockets_cdn/configuration.rb, line 8
def self.config
  @@config ||= ActiveSupport::Configurable::Configuration.new
end