# File lib/fog/google/storage.rb, line 39 def http_url(params, expires) "http://" << host_path_query(params, expires) end
# File lib/fog/google/storage.rb, line 43 def https_url(params, expires) "https://" << host_path_query(params, expires) end
# File lib/fog/google/storage.rb, line 47 def url(params, expires) Fog::Logger.deprecation("Fog::Storage::Google => #url is deprecated, use #https_url instead [light_black](#{caller.first})[/]") https_url(params, expires) end