1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Add a options hash so that headers can be passed in to set acls.

This commit is contained in:
Rupak Ganguly 2011-07-13 18:09:13 -04:00
parent 053960129d
commit e9553e6fc7

View file

@ -8,9 +8,10 @@ module Fog
# ==== Parameters
# * name<~String> - Name for container, should be < 256 bytes and must not contain '/'
#
def put_container(name)
def put_container(name, options = {})
response = request(
:expects => [201, 202],
:headers => options,
:method => 'PUT',
:path => URI.escape(name)
)