lib/fog/brightbox/requests/storage/get_container.rb in fog-brightbox-1.10.0 vs lib/fog/brightbox/requests/storage/get_container.rb in fog-brightbox-1.11.0

- old
+ new

@@ -28,13 +28,13 @@ # * 'last_modified'<~String> - Last modified timestamp # * 'name'<~String> - Name of object def get_container(container, options = {}) options = options.reject { |_key, value| value.nil? } request( - :expects => 200, - :method => "GET", - :path => Fog::Brightbox::Storage.escape(container), - :query => { "format" => "json" }.merge!(options) + expects: 200, + method: "GET", + path: Fog::Brightbox::Storage.escape(container), + query: { "format" => "json" }.merge!(options) ) end end end end