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

Add a case for the new HP provider.

This commit is contained in:
Rupak Ganguly 2011-06-15 02:12:10 -04:00
parent 6da79863ac
commit ee3b49dee9

View file

@ -10,6 +10,9 @@ module Fog
when 'Google' when 'Google'
require 'fog/storage/google' require 'fog/storage/google'
Fog::Google::Storage.new(attributes) Fog::Google::Storage.new(attributes)
when 'HP'
require 'fog/storage/hp'
Fog::HP::Storage.new(attributes)
when 'Local' when 'Local'
require 'fog/storage/local' require 'fog/storage/local'
Fog::Local::Storage.new(attributes) Fog::Local::Storage.new(attributes)