Parent

Class/Module Index [+]

Quicksearch

Fog::Compute::StormOnDemand::Mock

Public Class Methods

data() click to toggle source
# File lib/fog/storm_on_demand/compute.rb, line 48
def self.data
  @data ||= Hash.new do |hash, key|
    hash[key] = {
      :last_modified => {
        :images  => {},
        :servers => {}
      },
      :images  => {},
      :servers => {}
    }
  end
end
new(options={}) click to toggle source
# File lib/fog/storm_on_demand/compute.rb, line 71
def initialize(options={})
  @storm_on_demand_username = options[:storm_on_demand_username]
end
reset() click to toggle source
# File lib/fog/storm_on_demand/compute.rb, line 61
def self.reset
  @data = nil
end
reset_data(keys=data.keys) click to toggle source
# File lib/fog/storm_on_demand/compute.rb, line 65
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/compute.rb, line 75
def data
  self.class.data[@storm_on_demand_username]
end
reset_data() click to toggle source
# File lib/fog/storm_on_demand/compute.rb, line 79
def reset_data
  self.class.data.delete(@storm_on_demand_username)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.