class Fog::Network::StormOnDemand::Mock
Public Class Methods
data()
click to toggle source
# File lib/fog/storm_on_demand/network.rb, line 78 def self.data @data ||= Hash.new end
new(options={})
click to toggle source
# File lib/fog/storm_on_demand/network.rb, line 92 def initialize(options={}) @storm_on_demand_username = options[:storm_on_demand_username] end
reset()
click to toggle source
# File lib/fog/storm_on_demand/network.rb, line 82 def self.reset @data = nil end
reset_data(keys=data.keys)
click to toggle source
# File lib/fog/storm_on_demand/network.rb, line 86 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/network.rb, line 96 def data self.class.data[@storm_on_demand_username] end
reset_data()
click to toggle source
# File lib/fog/storm_on_demand/network.rb, line 100 def reset_data self.class.data.delete(@storm_on_demand_username) end