Object
# File lib/fog/cdn/aws.rb, line 20 def self.data @data ||= Hash.new do |hash, region| hash[region] = Hash.new do |region_hash, key| region_hash[key] = { :buckets => {} } end end end
# File lib/fog/cdn/aws.rb, line 34 def initialize(options={}) require 'mime/types' @aws_access_key_id = options[:aws_access_key_id] @region = options[:region] end
# File lib/fog/cdn/aws.rb, line 30 def self.reset @data = nil end
# File lib/fog/cdn/aws.rb, line 40 def data self.class.data[@region][@aws_access_key_id] end
# File lib/fog/cdn/aws.rb, line 44 def reset_data self.class.data[@region].delete(@aws_access_key_id) end
# File lib/fog/cdn/aws.rb, line 48 def signature(params) "foo" end
[Validate]
Generated with the Darkfish Rdoc Generator 2.