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