Sha256: 54ec8f21c199f5765e4e83d2ad3ffc06fc88c8a716676d03ad1d673cf4a59fb4
Contents?: true
Size: 683 Bytes
Versions: 38
Compression:
Stored size: 683 Bytes
Contents
module Fog module Rackspace module Files class Real # Delete an existing container # # ==== Parameters # * container<~String> - Name of container to delete # * object<~String> - Name of object to delete # def delete_object(container, object) response = storage_request( :expects => 204, :method => 'DELETE', :path => "#{CGI.escape(container)}/#{CGI.escape(object)}" ) response end end class Mock def delete_object(container, object) Fog::Mock.not_implemented end end end end end
Version data entries
38 entries across 38 versions & 2 rubygems