googleauth 0.12.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +3 -1
- data/CHANGELOG.md +5 -0
- data/Gemfile +4 -2
- data/Rakefile +21 -0
- data/googleauth.gemspec +1 -0
- data/integration/helper.rb +31 -0
- data/integration/id_tokens/key_source_test.rb +74 -0
- data/lib/googleauth.rb +1 -0
- data/lib/googleauth/id_tokens.rb +233 -0
- data/lib/googleauth/id_tokens/errors.rb +71 -0
- data/lib/googleauth/id_tokens/key_sources.rb +394 -0
- data/lib/googleauth/id_tokens/verifier.rb +144 -0
- data/lib/googleauth/service_account.rb +1 -1
- data/lib/googleauth/version.rb +1 -1
- data/spec/googleauth/apply_auth_examples.rb +12 -0
- data/test/helper.rb +33 -0
- data/test/id_tokens/key_sources_test.rb +240 -0
- data/test/id_tokens/verifier_test.rb +269 -0
- metadata +12 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: googleauth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Emiola
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -165,6 +165,8 @@ files:
|
|
165
165
|
- README.md
|
166
166
|
- Rakefile
|
167
167
|
- googleauth.gemspec
|
168
|
+
- integration/helper.rb
|
169
|
+
- integration/id_tokens/key_source_test.rb
|
168
170
|
- lib/googleauth.rb
|
169
171
|
- lib/googleauth/application_default.rb
|
170
172
|
- lib/googleauth/client_id.rb
|
@@ -173,6 +175,10 @@ files:
|
|
173
175
|
- lib/googleauth/credentials_loader.rb
|
174
176
|
- lib/googleauth/default_credentials.rb
|
175
177
|
- lib/googleauth/iam.rb
|
178
|
+
- lib/googleauth/id_tokens.rb
|
179
|
+
- lib/googleauth/id_tokens/errors.rb
|
180
|
+
- lib/googleauth/id_tokens/key_sources.rb
|
181
|
+
- lib/googleauth/id_tokens/verifier.rb
|
176
182
|
- lib/googleauth/json_key_reader.rb
|
177
183
|
- lib/googleauth/scope_util.rb
|
178
184
|
- lib/googleauth/service_account.rb
|
@@ -203,6 +209,9 @@ files:
|
|
203
209
|
- spec/googleauth/user_refresh_spec.rb
|
204
210
|
- spec/googleauth/web_user_authorizer_spec.rb
|
205
211
|
- spec/spec_helper.rb
|
212
|
+
- test/helper.rb
|
213
|
+
- test/id_tokens/key_sources_test.rb
|
214
|
+
- test/id_tokens/verifier_test.rb
|
206
215
|
homepage: https://github.com/googleapis/google-auth-library-ruby
|
207
216
|
licenses:
|
208
217
|
- Apache-2.0
|
@@ -222,7 +231,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
222
231
|
- !ruby/object:Gem::Version
|
223
232
|
version: '0'
|
224
233
|
requirements: []
|
225
|
-
rubygems_version: 3.
|
234
|
+
rubygems_version: 3.1.3
|
226
235
|
signing_key:
|
227
236
|
specification_version: 4
|
228
237
|
summary: Google Auth Library for Ruby
|