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

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 *.gem
*.rbc *.rbc
*.sw? *.sw?
.rvmrc
.bundle .bundle
.DS_Store .DS_Store
coverage coverage

View file

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