Module: Fog::Storage::GoogleJSON::Utils
Instance Method Summary collapse
- #http_url(params, expires) ⇒ Object
- #https_url(params, expires) ⇒ Object
- #url(params, expires) ⇒ Object
Instance Method Details
#http_url(params, expires) ⇒ Object
7 8 9 |
# File 'lib/fog/storage/google_json/utils.rb', line 7 def http_url(params, expires) "http://" << host_path_query(params, expires) end |
#https_url(params, expires) ⇒ Object
11 12 13 |
# File 'lib/fog/storage/google_json/utils.rb', line 11 def https_url(params, expires) "https://" << host_path_query(params, expires) end |
#url(params, expires) ⇒ Object
15 16 17 18 |
# File 'lib/fog/storage/google_json/utils.rb', line 15 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 |