Sha256: c8a18f57d6bb654994d46416123657f6560abd65342f1a41c487f733ff79bd4d
Contents?: true
Size: 852 Bytes
Versions: 8
Compression:
Stored size: 852 Bytes
Contents
module Fog module Storage class GoogleJSON class Real # Get an expiring object url from GCS # Deprecated, redirects to get_object_https_url.rb def get_object_url(bucket_name, object_name, expires) Fog::Logger.deprecation("Fog::Storage::Google => ##{get_object_url} is deprecated, use ##{get_object_https_url} instead[/] [light_black](#{caller(0..0)})") get_object_https_url(bucket_name, object_name, expires) end end class Mock # :nodoc:all def get_object_url(bucket_name, object_name, expires) Fog::Logger.deprecation("Fog::Storage::Google => ##{get_object_url} is deprecated, use ##{get_object_https_url} instead[/] [light_black](#{caller(0..0)})") get_object_https_url(bucket_name, object_name, expires) end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems