Fix sdk credentials warning (#148)

This commit is contained in:
Daniel Azuma 2018-08-02 09:11:52 -07:00 committed by GitHub
parent fed63c003f
commit d1ba5e95a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -134,6 +134,7 @@ module Google
def warn_if_cloud_sdk_credentials(client_id) def warn_if_cloud_sdk_credentials(client_id)
warn CLOUD_SDK_CREDENTIALS_WARNING if client_id == CLOUD_SDK_CLIENT_ID warn CLOUD_SDK_CREDENTIALS_WARNING if client_id == CLOUD_SDK_CLIENT_ID
end end
module_function :warn_if_cloud_sdk_credentials
private private

View File

@ -31,6 +31,6 @@ module Google
# Module Auth provides classes that provide Google-specific authorization # Module Auth provides classes that provide Google-specific authorization
# used to access Google APIs. # used to access Google APIs.
module Auth module Auth
VERSION = '0.6.1'.freeze VERSION = '0.6.2'.freeze
end end
end end