Sha256: 0b7809a0d4ef210bcf3b220e72b23b5cbc3c8e90db6ff4d770c7b713e3ee61ce

Contents?: true

Size: 1.15 KB

Versions: 4

Compression:

Stored size: 1.15 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/drop_box'
    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(File.read(value))
      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

4 entries across 4 versions & 1 rubygems

Version Path
browse-everything-0.8.1 lib/browse_everything.rb
browse-everything-0.8.0 lib/browse_everything.rb
browse-everything-0.7.1 lib/browse_everything.rb
browse-everything-0.7.0 lib/browse_everything.rb