1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

add internet_archive to fog providers, bin, storage.

This commit is contained in:
Andrew Kuklewicz 2013-01-31 14:39:12 -05:00
parent 4fc59f4393
commit 8e971f2bb7
3 changed files with 5 additions and 0 deletions

View file

@ -73,6 +73,7 @@ require 'fog/bin/go_grid'
require 'fog/bin/google'
require 'fog/bin/hp'
require 'fog/bin/ibm'
require 'fog/bin/internet_archive'
require 'fog/bin/joyent'
require 'fog/bin/libvirt'
require 'fog/bin/linode'

View file

@ -14,6 +14,7 @@ require 'fog/go_grid'
require 'fog/google'
require 'fog/hp'
require 'fog/ibm'
require 'fog/internet_archive'
require 'fog/joyent'
require 'fog/libvirt'
require 'fog/linode'

View file

@ -23,6 +23,9 @@ module Fog
when :ibm
require 'fog/ibm/storage'
Fog::Storage::IBM.new(attributes)
when :internetarchive
require 'fog/internet_archive/storage'
Fog::Storage::InternetArchive.new(attributes)
when :local
require 'fog/local/storage'
Fog::Storage::Local.new(attributes)