# File lib/fog/rackspace/storage.rb, line 50 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end
# File lib/fog/rackspace/storage.rb, line 60 def initialize(options={}) require 'mime/types' @rackspace_api_key = options[:rackspace_api_key] @rackspace_username = options[:rackspace_username] end
# File lib/fog/rackspace/storage.rb, line 56 def self.reset @data = nil end
# File lib/fog/rackspace/storage.rb, line 66 def data self.class.data[@rackspace_username] end
# File lib/fog/rackspace/storage.rb, line 70 def reset_data self.class.data.delete(@rackspace_username) end