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/ninefold/requests/storage/head_namespace.rb

21 lines
490 B
Ruby
Raw Normal View History

2011-11-02 00:39:43 -04:00
module Fog
module Storage
class Ninefold
class Real
def head_namespace(namespace = '', options = {})
options = options.reject {|key, value| value.nil?}
2011-11-02 00:39:43 -04:00
request({
:expects => 200,
:method => 'HEAD',
:path => "namespace/" + namespace,
:query => {},
:parse => true
}.merge(options))
2011-11-02 00:39:43 -04:00
end
2011-11-02 00:39:43 -04:00
end
end
end
end