# File lib/fog/riakcs/usage.rb, line 17 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end
# File lib/fog/riakcs/usage.rb, line 31 def data self.class.data[riakcs_uri] end
# File lib/fog/riakcs/requests/usage/get_usage.rb, line 49 def get_usage(access_key, options = {}) Excon::Response.new.tap do |response| response.status = 200 response.headers['Content-Type'] = 'application/json' response.body = { 'Access' => { 'Nodes' => [], 'Errors' => [] }, 'Storage' => { 'Samples' => [], 'Errors' => [] } } end end
Generated with the Darkfish Rdoc Generator 2.