# File lib/fog/storage/google.rb, line 36defhttp_url(params, expires)
"http://"<<host_path_query(params, expires)
end
https_url(params, expires)click to toggle source
# File lib/fog/storage/google.rb, line 40defhttps_url(params, expires)
"https://"<<host_path_query(params, expires)
end
url(params, expires)click to toggle source
# File lib/fog/storage/google.rb, line 44defurl(params, expires)
Formatador.display_line("[yellow][WARN] Fog::Storage::Google => #url is deprecated, use #https_url instead[/] [light_black](#{caller.first})[/]")
https_url(params, expires)
end