Parent

Class/Module Index [+]

Quicksearch

InternetArchive

Public Class Methods

[](service) click to toggle source
# File lib/fog/bin/internet_archive.rb, line 16
def [](service)
  @@connections ||= Hash.new do |hash, key|
    hash[key] = case key
    when :storage
      Fog::Logger.warning("InternetArchive[:storage] is not recommended, use Storage[:aws] for portability")
      Fog::Storage.new(:provider => 'InternetArchive')
    else
      raise ArgumentError, "Unrecognized service: #{key.inspect}"
    end
  end
  @@connections[service]
end
class_for(key) click to toggle source
# File lib/fog/bin/internet_archive.rb, line 4
def class_for(key)
  case key
  when :storage
    Fog::Storage::InternetArchive
  else
    # @todo Replace most instances of ArgumentError with NotImplementedError
    # @todo For a list of widely supported Exceptions, see:
    # => http://www.zenspider.com/Languages/Ruby/QuickRef.html#35
    raise ArgumentError, "Unsupported #{self} service: #{key}"
  end
end
services() click to toggle source
# File lib/fog/bin/internet_archive.rb, line 29
def services
  Fog::InternetArchive.services
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.