add query options to Fog::Storage::AWS#get_object_https_url

This commit is contained in:
Mateusz Juraszek 2011-12-08 16:48:32 +01:00
parent 12a70ffe80
commit 47983731ee
2 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View File

@ -2,6 +2,7 @@
*.gem
*.rbc
*.sw?
.rvmrc
.bundle
.DS_Store
coverage

View File

@ -4,7 +4,7 @@ module Fog
module GetObjectHttpsUrl
def get_object_https_url(bucket_name, object_name, expires)
def get_object_https_url(bucket_name, object_name, expires, options = {})
unless bucket_name
raise ArgumentError.new('bucket_name is required')
end
@ -15,7 +15,8 @@ module Fog
:headers => {},
:host => @host,
:method => 'GET',
:path => "#{bucket_name}/#{object_name}"
:path => "#{bucket_name}/#{object_name}",
:query => options[:query]
}, expires)
end
@ -48,4 +49,4 @@ module Fog
end
end
end
end
end