├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request.md ├── blunderbuss.yml ├── release-please.yml ├── release-trigger.yml ├── renovate.json └── workflows │ └── ci.yml ├── .gitignore ├── .kokoro ├── populate-secrets.sh ├── presubmit │ └── samples.cfg ├── release.cfg ├── release.sh ├── samples.sh └── trampoline_v2.sh ├── .release-please-manifest.json ├── .repo-metadata.json ├── .rspec ├── .rubocop.yml ├── .toys ├── .lib │ └── repo_context.rb ├── .toys.rb ├── ci.rb ├── linkinator.rb ├── release.rb └── samples.rb ├── .trampolinerc ├── .yardopts ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Credentials.md ├── Errors.md ├── Gemfile ├── LICENSE ├── README.md ├── SECURITY.md ├── googleauth.gemspec ├── integration ├── helper.rb └── id_tokens │ └── key_source_test.rb ├── lib ├── googleauth.rb └── googleauth │ ├── api_key.rb │ ├── application_default.rb │ ├── base_client.rb │ ├── bearer_token.rb │ ├── client_id.rb │ ├── compute_engine.rb │ ├── credentials.rb │ ├── credentials_loader.rb │ ├── default_credentials.rb │ ├── errors.rb │ ├── external_account.rb │ ├── external_account │ ├── aws_credentials.rb │ ├── base_credentials.rb │ ├── external_account_utils.rb │ ├── identity_pool_credentials.rb │ └── pluggable_credentials.rb │ ├── helpers │ └── connection.rb │ ├── iam.rb │ ├── id_tokens.rb │ ├── id_tokens │ ├── errors.rb │ ├── key_sources.rb │ └── verifier.rb │ ├── impersonated_service_account.rb │ ├── json_key_reader.rb │ ├── oauth2 │ └── sts_client.rb │ ├── scope_util.rb │ ├── service_account.rb │ ├── service_account_jwt_header.rb │ ├── signet.rb │ ├── stores │ ├── file_token_store.rb │ └── redis_token_store.rb │ ├── token_store.rb │ ├── user_authorizer.rb │ ├── user_refresh.rb │ ├── version.rb │ └── web_user_authorizer.rb ├── release-please-config.json ├── samples ├── Gemfile ├── acceptance │ ├── auth_cloud_idtoken_metadata_server_test.rb │ ├── authenticate_implicit_with_adc_test.rb │ ├── authenticate_with_api_key_test.rb │ └── helper.rb ├── auth_cloud_idtoken_metadata_server.rb ├── authenticate_implicit_with_adc.rb └── authenticate_with_api_key.rb ├── spec ├── googleauth │ ├── apply_auth_examples.rb │ ├── compute_engine_spec.rb │ ├── credentials_spec.rb │ ├── external_account │ │ ├── aws_credentials_spec.rb │ │ ├── aws_request_signer_spec.rb │ │ ├── identity_pool_credentials_spec.rb │ │ └── pluggable_credentials_spec.rb │ ├── external_account_spec.rb │ ├── get_application_default_spec.rb │ ├── iam_spec.rb │ ├── impersonated_service_account_spec.rb │ ├── oauth2 │ │ └── sts_client_spec.rb │ ├── service_account │ │ └── jwt_header_auth_examples.rb │ ├── service_account_jwt_header_spec.rb │ ├── service_account_spec.rb │ ├── signet_spec.rb │ ├── stores │ │ ├── file_token_store_spec.rb │ │ ├── redis_token_store_spec.rb │ │ └── store_examples.rb │ ├── user_authorizer_spec.rb │ ├── user_refresh_spec.rb │ └── web_user_authorizer_spec.rb └── spec_helper.rb └── test ├── api_key_test.rb ├── bearer_token_test.rb ├── client_id_test.rb ├── errors_test.rb ├── helper.rb ├── id_tokens ├── key_sources_test.rb └── verifier_test.rb ├── json_key_reader_test.rb ├── principal_test.rb └── scope_util_test.rb /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/blunderbuss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.github/blunderbuss.yml -------------------------------------------------------------------------------- /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.github/release-trigger.yml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/populate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.kokoro/populate-secrets.sh -------------------------------------------------------------------------------- /.kokoro/presubmit/samples.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.kokoro/presubmit/samples.cfg -------------------------------------------------------------------------------- /.kokoro/release.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.kokoro/release.cfg -------------------------------------------------------------------------------- /.kokoro/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.kokoro/release.sh -------------------------------------------------------------------------------- /.kokoro/samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.kokoro/samples.sh -------------------------------------------------------------------------------- /.kokoro/trampoline_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.kokoro/trampoline_v2.sh -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "1.16.0" 3 | } 4 | -------------------------------------------------------------------------------- /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | --format documentation 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.toys/.lib/repo_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.toys/.lib/repo_context.rb -------------------------------------------------------------------------------- /.toys/.toys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.toys/.toys.rb -------------------------------------------------------------------------------- /.toys/ci.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.toys/ci.rb -------------------------------------------------------------------------------- /.toys/linkinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.toys/linkinator.rb -------------------------------------------------------------------------------- /.toys/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.toys/release.rb -------------------------------------------------------------------------------- /.toys/samples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.toys/samples.rb -------------------------------------------------------------------------------- /.trampolinerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.trampolinerc -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/Credentials.md -------------------------------------------------------------------------------- /Errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/Errors.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/SECURITY.md -------------------------------------------------------------------------------- /googleauth.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/googleauth.gemspec -------------------------------------------------------------------------------- /integration/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/integration/helper.rb -------------------------------------------------------------------------------- /integration/id_tokens/key_source_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/integration/id_tokens/key_source_test.rb -------------------------------------------------------------------------------- /lib/googleauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth.rb -------------------------------------------------------------------------------- /lib/googleauth/api_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/api_key.rb -------------------------------------------------------------------------------- /lib/googleauth/application_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/application_default.rb -------------------------------------------------------------------------------- /lib/googleauth/base_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/base_client.rb -------------------------------------------------------------------------------- /lib/googleauth/bearer_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/bearer_token.rb -------------------------------------------------------------------------------- /lib/googleauth/client_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/client_id.rb -------------------------------------------------------------------------------- /lib/googleauth/compute_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/compute_engine.rb -------------------------------------------------------------------------------- /lib/googleauth/credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/credentials.rb -------------------------------------------------------------------------------- /lib/googleauth/credentials_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/credentials_loader.rb -------------------------------------------------------------------------------- /lib/googleauth/default_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/default_credentials.rb -------------------------------------------------------------------------------- /lib/googleauth/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/errors.rb -------------------------------------------------------------------------------- /lib/googleauth/external_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/external_account.rb -------------------------------------------------------------------------------- /lib/googleauth/external_account/aws_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/external_account/aws_credentials.rb -------------------------------------------------------------------------------- /lib/googleauth/external_account/base_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/external_account/base_credentials.rb -------------------------------------------------------------------------------- /lib/googleauth/external_account/external_account_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/external_account/external_account_utils.rb -------------------------------------------------------------------------------- /lib/googleauth/external_account/identity_pool_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/external_account/identity_pool_credentials.rb -------------------------------------------------------------------------------- /lib/googleauth/external_account/pluggable_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/external_account/pluggable_credentials.rb -------------------------------------------------------------------------------- /lib/googleauth/helpers/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/helpers/connection.rb -------------------------------------------------------------------------------- /lib/googleauth/iam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/iam.rb -------------------------------------------------------------------------------- /lib/googleauth/id_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/id_tokens.rb -------------------------------------------------------------------------------- /lib/googleauth/id_tokens/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/id_tokens/errors.rb -------------------------------------------------------------------------------- /lib/googleauth/id_tokens/key_sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/id_tokens/key_sources.rb -------------------------------------------------------------------------------- /lib/googleauth/id_tokens/verifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/id_tokens/verifier.rb -------------------------------------------------------------------------------- /lib/googleauth/impersonated_service_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/impersonated_service_account.rb -------------------------------------------------------------------------------- /lib/googleauth/json_key_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/json_key_reader.rb -------------------------------------------------------------------------------- /lib/googleauth/oauth2/sts_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/oauth2/sts_client.rb -------------------------------------------------------------------------------- /lib/googleauth/scope_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/scope_util.rb -------------------------------------------------------------------------------- /lib/googleauth/service_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/service_account.rb -------------------------------------------------------------------------------- /lib/googleauth/service_account_jwt_header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/service_account_jwt_header.rb -------------------------------------------------------------------------------- /lib/googleauth/signet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/signet.rb -------------------------------------------------------------------------------- /lib/googleauth/stores/file_token_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/stores/file_token_store.rb -------------------------------------------------------------------------------- /lib/googleauth/stores/redis_token_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/stores/redis_token_store.rb -------------------------------------------------------------------------------- /lib/googleauth/token_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/token_store.rb -------------------------------------------------------------------------------- /lib/googleauth/user_authorizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/user_authorizer.rb -------------------------------------------------------------------------------- /lib/googleauth/user_refresh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/user_refresh.rb -------------------------------------------------------------------------------- /lib/googleauth/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/version.rb -------------------------------------------------------------------------------- /lib/googleauth/web_user_authorizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/lib/googleauth/web_user_authorizer.rb -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/release-please-config.json -------------------------------------------------------------------------------- /samples/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/samples/Gemfile -------------------------------------------------------------------------------- /samples/acceptance/auth_cloud_idtoken_metadata_server_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/samples/acceptance/auth_cloud_idtoken_metadata_server_test.rb -------------------------------------------------------------------------------- /samples/acceptance/authenticate_implicit_with_adc_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/samples/acceptance/authenticate_implicit_with_adc_test.rb -------------------------------------------------------------------------------- /samples/acceptance/authenticate_with_api_key_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/samples/acceptance/authenticate_with_api_key_test.rb -------------------------------------------------------------------------------- /samples/acceptance/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/samples/acceptance/helper.rb -------------------------------------------------------------------------------- /samples/auth_cloud_idtoken_metadata_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/samples/auth_cloud_idtoken_metadata_server.rb -------------------------------------------------------------------------------- /samples/authenticate_implicit_with_adc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/samples/authenticate_implicit_with_adc.rb -------------------------------------------------------------------------------- /samples/authenticate_with_api_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/samples/authenticate_with_api_key.rb -------------------------------------------------------------------------------- /spec/googleauth/apply_auth_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/apply_auth_examples.rb -------------------------------------------------------------------------------- /spec/googleauth/compute_engine_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/compute_engine_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/credentials_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/credentials_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/external_account/aws_credentials_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/external_account/aws_credentials_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/external_account/aws_request_signer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/external_account/aws_request_signer_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/external_account/identity_pool_credentials_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/external_account/identity_pool_credentials_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/external_account/pluggable_credentials_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/external_account/pluggable_credentials_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/external_account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/external_account_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/get_application_default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/get_application_default_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/iam_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/iam_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/impersonated_service_account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/impersonated_service_account_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/oauth2/sts_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/oauth2/sts_client_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/service_account/jwt_header_auth_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/service_account/jwt_header_auth_examples.rb -------------------------------------------------------------------------------- /spec/googleauth/service_account_jwt_header_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/service_account_jwt_header_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/service_account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/service_account_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/signet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/signet_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/stores/file_token_store_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/stores/file_token_store_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/stores/redis_token_store_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/stores/redis_token_store_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/stores/store_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/stores/store_examples.rb -------------------------------------------------------------------------------- /spec/googleauth/user_authorizer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/user_authorizer_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/user_refresh_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/user_refresh_spec.rb -------------------------------------------------------------------------------- /spec/googleauth/web_user_authorizer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/googleauth/web_user_authorizer_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/api_key_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/test/api_key_test.rb -------------------------------------------------------------------------------- /test/bearer_token_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/test/bearer_token_test.rb -------------------------------------------------------------------------------- /test/client_id_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/test/client_id_test.rb -------------------------------------------------------------------------------- /test/errors_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/test/errors_test.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/id_tokens/key_sources_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/test/id_tokens/key_sources_test.rb -------------------------------------------------------------------------------- /test/id_tokens/verifier_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/test/id_tokens/verifier_test.rb -------------------------------------------------------------------------------- /test/json_key_reader_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/test/json_key_reader_test.rb -------------------------------------------------------------------------------- /test/principal_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/test/principal_test.rb -------------------------------------------------------------------------------- /test/scope_util_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-auth-library-ruby/HEAD/test/scope_util_test.rb --------------------------------------------------------------------------------