1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/files/delete_container.rb

32 lines
600 B
Ruby
Raw Normal View History

module Fog
module Rackspace
module Files
class Real
2009-10-28 01:20:50 -04:00
# Delete an existing container
#
# ==== Parameters
# * name<~String> - Name of container to delete
#
def delete_container(name)
response = storage_request(
:expects => 204,
:method => 'DELETE',
:path => CGI.escape(name)
)
response
end
end
class Mock
2009-10-28 01:20:50 -04:00
def delete_container(name)
raise MockNotImplemented.new("Contributions welcome!")
2009-10-28 01:20:50 -04:00
end
end
end
end
end