# 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
# 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
Generated with the Darkfish Rdoc Generator 2.