Sha256: eab8cfc8dc802feb75560d8d75ba872221aa99c06e64328e9b969db5c8bae87e
Contents?: true
Size: 1.36 KB
Versions: 6
Compression:
Stored size: 1.36 KB
Contents
require "rails" require "browse_everything/version" require "browse_everything/engine" require "browse_everything/retriever" module BrowseEverything class InitializationError < RuntimeError; end autoload :Browser, 'browse_everything/browser' autoload :FileEntry, 'browse_everything/file_entry' module Driver autoload :Base, 'browse_everything/driver/base' autoload :FileSystem, 'browse_everything/driver/file_system' autoload :Dropbox, 'browse_everything/driver/dropbox' autoload :SkyDrive, 'browse_everything/driver/sky_drive' autoload :Box, 'browse_everything/driver/box' autoload :GoogleDrive, 'browse_everything/driver/google_drive' end class << self def configure(value) if value.nil? or value.kind_of?(Hash) @config = value elsif value.kind_of?(String) @config = YAML.load(ERB.new(File.read(value)).result) if @config.include? 'drop_box' warn "[DEPRECATION] `drop_box` is deprecated. Please use `dropbox` instead." @config['dropbox'] = @config.delete('drop_box') end else raise InitializationError, "Unrecognized configuration: #{value.inspect}" end end def config if @config.nil? configure(File.join(Rails.root.to_s,'config','browse_everything_providers.yml')) end @config end end end
Version data entries
6 entries across 6 versions & 1 rubygems