class Fog::Account::StormOnDemand::Mock
Public Class Methods
data()
click to toggle source
# File lib/fog/storm_on_demand/account.rb, line 19 def self.data @data ||= Hash.new end
new(options={})
click to toggle source
# File lib/fog/storm_on_demand/account.rb, line 33 def initialize(options={}) @storm_on_demand_username = options[:storm_on_demand_username] end
reset()
click to toggle source
# File lib/fog/storm_on_demand/account.rb, line 23 def self.reset @data = nil end
reset_data(keys=data.keys)
click to toggle source
# File lib/fog/storm_on_demand/account.rb, line 27 def self.reset_data(keys=data.keys) for key in [*keys] data.delete(key) end end
Public Instance Methods
data()
click to toggle source
# File lib/fog/storm_on_demand/account.rb, line 37 def data self.class.data[@storm_on_demand_username] end
reset_data()
click to toggle source
# File lib/fog/storm_on_demand/account.rb, line 41 def reset_data self.class.data.delete(@storm_on_demand_username) end