[ibm] Rename ibm_user_id -> ibm_username

This commit is contained in:
Decklin Foster 2012-02-28 16:28:45 -05:00
parent ab49331330
commit 6be770e046
3 changed files with 15 additions and 15 deletions

View File

@ -5,7 +5,7 @@ module Fog
module Compute
class IBM < Fog::Service
requires :ibm_user_id, :ibm_password
requires :ibm_username, :ibm_password
recognizes :location
model_path 'fog/ibm/models/compute'
@ -60,7 +60,7 @@ module Fog
class Real
def initialize(options={})
@connection = Fog::IBM::Connection.new(options[:ibm_user_id], options[:ibm_password])
@connection = Fog::IBM::Connection.new(options[:ibm_username], options[:ibm_password])
end
private
@ -99,18 +99,18 @@ module Fog
end
def data
self.class.data[@ibm_user_id]
self.class.data[@ibm_username]
end
def reset_data
self.class.data.delete(@ibm_user_id)
@data = self.class.data[@ibm_user_id]
self.class.data.delete(@ibm_username)
@data = self.class.data[@ibm_username]
end
def initialize(options={})
@ibm_user_id = options[:ibm_user_id]
@ibm_username = options[:ibm_username]
@ibm_password = options[:ibm_password]
@data = self.class.data[@ibm_user_id]
@data = self.class.data[@ibm_username]
end
def self.populate_images

View File

@ -5,7 +5,7 @@ module Fog
module Storage
class IBM < Fog::Service
requires :ibm_user_id, :ibm_password
requires :ibm_username, :ibm_password
recognizes :location
model_path 'fog/ibm/models/storage'
@ -26,7 +26,7 @@ module Fog
class Real
def initialize(options={})
@connection = Fog::IBM::Connection.new(options[:ibm_user_id], options[:ibm_password])
@connection = Fog::IBM::Connection.new(options[:ibm_username], options[:ibm_password])
end
private
@ -61,18 +61,18 @@ module Fog
end
def data
self.class.data[@ibm_user_id]
self.class.data[@ibm_username]
end
def reset_data
self.class.data.delete(@ibm_user_id)
@data = self.class.data[@ibm_user_id]
self.class.data.delete(@ibm_username)
@data = self.class.data[@ibm_username]
end
def initialize(options={})
@ibm_user_id = options[:ibm_user_id]
@ibm_username = options[:ibm_username]
@ibm_password = options[:ibm_password]
@data = self.class.data[@ibm_user_id]
@data = self.class.data[@ibm_username]
end
end

View File

@ -30,7 +30,7 @@ if Fog.mock?
:go_grid_shared_secret => 'go_grid_shared_secret',
:google_storage_access_key_id => 'google_storage_access_key_id',
:google_storage_secret_access_key => 'google_storage_secret_access_key',
:ibm_user_id => 'ibm_user_id',
:ibm_username => 'ibm_username',
:ibm_password => 'ibm_password',
:joyent_username => "joyentuser",
:joyent_password => "joyentpass",