# File lib/fog/google/storage.rb, line 39defhttp_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 43defhttps_url(params, expires)
"https://"<<host_path_query(params, expires)
end
url(params, expires)click to toggle source
# File lib/fog/google/storage.rb, line 47defurl(params, expires)
Fog::Logger.deprecation("Fog::Storage::Google => #url is deprecated, use #https_url instead [light_black](#{caller.first})[/]")
https_url(params, expires)
end