Sha256: 6ddfc54159309e70d20016b3331e1d435f7851d34413a4172450e44901bbecb0
Contents?: true
Size: 711 Bytes
Versions: 23
Compression:
Stored size: 711 Bytes
Contents
module Fog module Storage class Rackspace class Real # Get details for object # # ==== Parameters # * container<~String> - Name of container to look in # * object<~String> - Name of object to look for # def get_object(container, object, &block) params = {} if block_given? params[:response_block] = Proc.new end request(params.merge!({ :block => block, :expects => 200, :method => 'GET', :path => "#{Fog::Rackspace.escape(container)}/#{Fog::Rackspace.escape(object)}" }), false) end end end end end
Version data entries
23 entries across 23 versions & 10 rubygems