googleauth 0.17.1 → 1.8.1
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/CHANGELOG.md +127 -62
- data/README.md +50 -15
- data/lib/googleauth/application_default.rb +15 -30
- data/lib/googleauth/base_client.rb +80 -0
- data/lib/googleauth/client_id.rb +35 -33
- data/lib/googleauth/compute_engine.rb +33 -40
- data/lib/googleauth/credentials.rb +12 -28
- data/lib/googleauth/credentials_loader.rb +21 -50
- data/lib/googleauth/default_credentials.rb +15 -27
- data/lib/googleauth/external_account/aws_credentials.rb +378 -0
- data/lib/googleauth/external_account/base_credentials.rb +158 -0
- data/lib/googleauth/external_account/external_account_utils.rb +103 -0
- data/lib/googleauth/external_account/identity_pool_credentials.rb +118 -0
- data/lib/googleauth/external_account/pluggable_credentials.rb +156 -0
- data/lib/googleauth/external_account.rb +93 -0
- data/lib/googleauth/helpers/connection.rb +35 -0
- data/lib/googleauth/iam.rb +10 -25
- data/lib/googleauth/id_tokens/errors.rb +9 -23
- data/lib/googleauth/id_tokens/key_sources.rb +19 -33
- data/lib/googleauth/id_tokens/verifier.rb +9 -23
- data/lib/googleauth/id_tokens.rb +11 -25
- data/lib/googleauth/json_key_reader.rb +10 -25
- data/lib/googleauth/oauth2/sts_client.rb +109 -0
- data/lib/googleauth/scope_util.rb +45 -27
- data/lib/googleauth/service_account.rb +11 -28
- data/lib/googleauth/signet.rb +16 -58
- data/lib/googleauth/stores/file_token_store.rb +10 -25
- data/lib/googleauth/stores/redis_token_store.rb +10 -25
- data/lib/googleauth/token_store.rb +10 -25
- data/lib/googleauth/user_authorizer.rb +22 -30
- data/lib/googleauth/user_refresh.rb +15 -27
- data/lib/googleauth/version.rb +11 -26
- data/lib/googleauth/web_user_authorizer.rb +14 -29
- data/lib/googleauth.rb +10 -25
- metadata +26 -25
|
@@ -1,31 +1,16 @@
|
|
|
1
|
-
# Copyright 2014
|
|
2
|
-
# All rights reserved.
|
|
1
|
+
# Copyright 2014 Google, Inc.
|
|
3
2
|
#
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
7
6
|
#
|
|
8
|
-
#
|
|
9
|
-
# notice, this list of conditions and the following disclaimer.
|
|
10
|
-
# * Redistributions in binary form must reproduce the above
|
|
11
|
-
# copyright notice, this list of conditions and the following disclaimer
|
|
12
|
-
# in the documentation and/or other materials provided with the
|
|
13
|
-
# distribution.
|
|
14
|
-
# * Neither the name of Google Inc. nor the names of its
|
|
15
|
-
# contributors may be used to endorse or promote products derived from
|
|
16
|
-
# this software without specific prior written permission.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
17
8
|
#
|
|
18
|
-
#
|
|
19
|
-
#
|
|
20
|
-
#
|
|
21
|
-
#
|
|
22
|
-
#
|
|
23
|
-
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
24
|
-
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
25
|
-
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
26
|
-
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
27
|
-
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
-
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
29
14
|
|
|
30
15
|
require "uri"
|
|
31
16
|
require "multi_json"
|
|
@@ -95,6 +80,8 @@ module Google
|
|
|
95
80
|
# @param [String, Array<String>] scope
|
|
96
81
|
# Authorization scope to request. Overrides the instance scopes if not
|
|
97
82
|
# nil.
|
|
83
|
+
# @param [Hash] additional_parameters
|
|
84
|
+
# Additional query parameters to be added to the authorization URL.
|
|
98
85
|
# @return [String]
|
|
99
86
|
# Authorization url
|
|
100
87
|
def get_authorization_url options = {}
|
|
@@ -102,7 +89,8 @@ module Google
|
|
|
102
89
|
credentials = UserRefreshCredentials.new(
|
|
103
90
|
client_id: @client_id.id,
|
|
104
91
|
client_secret: @client_id.secret,
|
|
105
|
-
scope: scope
|
|
92
|
+
scope: scope,
|
|
93
|
+
additional_parameters: options[:additional_parameters]
|
|
106
94
|
)
|
|
107
95
|
redirect_uri = redirect_uri_for options[:base_url]
|
|
108
96
|
url = credentials.authorization_uri(access_type: "offline",
|
|
@@ -159,6 +147,9 @@ module Google
|
|
|
159
147
|
# Absolute URL to resolve the configured callback uri against.
|
|
160
148
|
# Required if the configured
|
|
161
149
|
# callback uri is a relative.
|
|
150
|
+
# @param [Hash] additional_parameters
|
|
151
|
+
# Additional parameters to be added to the post body of token
|
|
152
|
+
# endpoint request.
|
|
162
153
|
# @return [Google::Auth::UserRefreshCredentials]
|
|
163
154
|
# Credentials if exchange is successful
|
|
164
155
|
def get_credentials_from_code options = {}
|
|
@@ -167,10 +158,11 @@ module Google
|
|
|
167
158
|
scope = options[:scope] || @scope
|
|
168
159
|
base_url = options[:base_url]
|
|
169
160
|
credentials = UserRefreshCredentials.new(
|
|
170
|
-
client_id:
|
|
171
|
-
client_secret:
|
|
172
|
-
redirect_uri:
|
|
173
|
-
scope:
|
|
161
|
+
client_id: @client_id.id,
|
|
162
|
+
client_secret: @client_id.secret,
|
|
163
|
+
redirect_uri: redirect_uri_for(base_url),
|
|
164
|
+
scope: scope,
|
|
165
|
+
additional_parameters: options[:additional_parameters]
|
|
174
166
|
)
|
|
175
167
|
credentials.code = code
|
|
176
168
|
credentials.fetch_access_token!({})
|
|
@@ -1,31 +1,16 @@
|
|
|
1
|
-
# Copyright 2015
|
|
2
|
-
# All rights reserved.
|
|
1
|
+
# Copyright 2015 Google, Inc.
|
|
3
2
|
#
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
7
6
|
#
|
|
8
|
-
#
|
|
9
|
-
# notice, this list of conditions and the following disclaimer.
|
|
10
|
-
# * Redistributions in binary form must reproduce the above
|
|
11
|
-
# copyright notice, this list of conditions and the following disclaimer
|
|
12
|
-
# in the documentation and/or other materials provided with the
|
|
13
|
-
# distribution.
|
|
14
|
-
# * Neither the name of Google Inc. nor the names of its
|
|
15
|
-
# contributors may be used to endorse or promote products derived from
|
|
16
|
-
# this software without specific prior written permission.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
17
8
|
#
|
|
18
|
-
#
|
|
19
|
-
#
|
|
20
|
-
#
|
|
21
|
-
#
|
|
22
|
-
#
|
|
23
|
-
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
24
|
-
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
25
|
-
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
26
|
-
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
27
|
-
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
-
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
29
14
|
|
|
30
15
|
require "googleauth/signet"
|
|
31
16
|
require "googleauth/credentials_loader"
|
|
@@ -51,6 +36,7 @@ module Google
|
|
|
51
36
|
REVOKE_TOKEN_URI = "https://oauth2.googleapis.com/revoke".freeze
|
|
52
37
|
extend CredentialsLoader
|
|
53
38
|
attr_reader :project_id
|
|
39
|
+
attr_reader :quota_project_id
|
|
54
40
|
|
|
55
41
|
# Create a UserRefreshCredentials.
|
|
56
42
|
#
|
|
@@ -63,14 +49,15 @@ module Google
|
|
|
63
49
|
"client_id" => ENV[CredentialsLoader::CLIENT_ID_VAR],
|
|
64
50
|
"client_secret" => ENV[CredentialsLoader::CLIENT_SECRET_VAR],
|
|
65
51
|
"refresh_token" => ENV[CredentialsLoader::REFRESH_TOKEN_VAR],
|
|
66
|
-
"project_id" => ENV[CredentialsLoader::PROJECT_ID_VAR]
|
|
52
|
+
"project_id" => ENV[CredentialsLoader::PROJECT_ID_VAR],
|
|
53
|
+
"quota_project_id" => nil
|
|
67
54
|
}
|
|
68
|
-
|
|
69
55
|
new(token_credential_uri: TOKEN_CRED_URI,
|
|
70
56
|
client_id: user_creds["client_id"],
|
|
71
57
|
client_secret: user_creds["client_secret"],
|
|
72
58
|
refresh_token: user_creds["refresh_token"],
|
|
73
59
|
project_id: user_creds["project_id"],
|
|
60
|
+
quota_project_id: user_creds["quota_project_id"],
|
|
74
61
|
scope: scope)
|
|
75
62
|
.configure_connection(options)
|
|
76
63
|
end
|
|
@@ -92,6 +79,7 @@ module Google
|
|
|
92
79
|
options[:authorization_uri] ||= AUTHORIZATION_URI
|
|
93
80
|
@project_id = options[:project_id]
|
|
94
81
|
@project_id ||= CredentialsLoader.load_gcloud_project_id
|
|
82
|
+
@quota_project_id = options[:quota_project_id]
|
|
95
83
|
super options
|
|
96
84
|
end
|
|
97
85
|
|
data/lib/googleauth/version.rb
CHANGED
|
@@ -1,36 +1,21 @@
|
|
|
1
|
-
# Copyright 2014
|
|
2
|
-
# All rights reserved.
|
|
1
|
+
# Copyright 2014 Google, Inc.
|
|
3
2
|
#
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
7
6
|
#
|
|
8
|
-
#
|
|
9
|
-
# notice, this list of conditions and the following disclaimer.
|
|
10
|
-
# * Redistributions in binary form must reproduce the above
|
|
11
|
-
# copyright notice, this list of conditions and the following disclaimer
|
|
12
|
-
# in the documentation and/or other materials provided with the
|
|
13
|
-
# distribution.
|
|
14
|
-
# * Neither the name of Google Inc. nor the names of its
|
|
15
|
-
# contributors may be used to endorse or promote products derived from
|
|
16
|
-
# this software without specific prior written permission.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
17
8
|
#
|
|
18
|
-
#
|
|
19
|
-
#
|
|
20
|
-
#
|
|
21
|
-
#
|
|
22
|
-
#
|
|
23
|
-
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
24
|
-
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
25
|
-
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
26
|
-
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
27
|
-
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
-
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
29
14
|
|
|
30
15
|
module Google
|
|
31
16
|
# Module Auth provides classes that provide Google-specific authorization
|
|
32
17
|
# used to access Google APIs.
|
|
33
18
|
module Auth
|
|
34
|
-
VERSION = "
|
|
19
|
+
VERSION = "1.8.1".freeze
|
|
35
20
|
end
|
|
36
21
|
end
|
|
@@ -1,31 +1,16 @@
|
|
|
1
|
-
# Copyright 2014
|
|
2
|
-
# All rights reserved.
|
|
1
|
+
# Copyright 2014 Google, Inc.
|
|
3
2
|
#
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
7
6
|
#
|
|
8
|
-
#
|
|
9
|
-
# notice, this list of conditions and the following disclaimer.
|
|
10
|
-
# * Redistributions in binary form must reproduce the above
|
|
11
|
-
# copyright notice, this list of conditions and the following disclaimer
|
|
12
|
-
# in the documentation and/or other materials provided with the
|
|
13
|
-
# distribution.
|
|
14
|
-
# * Neither the name of Google Inc. nor the names of its
|
|
15
|
-
# contributors may be used to endorse or promote products derived from
|
|
16
|
-
# this software without specific prior written permission.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
17
8
|
#
|
|
18
|
-
#
|
|
19
|
-
#
|
|
20
|
-
#
|
|
21
|
-
#
|
|
22
|
-
#
|
|
23
|
-
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
24
|
-
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
25
|
-
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
26
|
-
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
27
|
-
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
-
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
29
14
|
|
|
30
15
|
require "multi_json"
|
|
31
16
|
require "googleauth/signet"
|
|
@@ -207,13 +192,13 @@ module Google
|
|
|
207
192
|
end
|
|
208
193
|
|
|
209
194
|
def self.extract_callback_state request
|
|
210
|
-
state = MultiJson.load(request[STATE_PARAM] || "{}")
|
|
195
|
+
state = MultiJson.load(request.params[STATE_PARAM] || "{}")
|
|
211
196
|
redirect_uri = state[CURRENT_URI_KEY]
|
|
212
197
|
callback_state = {
|
|
213
|
-
AUTH_CODE_KEY => request[AUTH_CODE_KEY],
|
|
214
|
-
ERROR_CODE_KEY => request[ERROR_CODE_KEY],
|
|
198
|
+
AUTH_CODE_KEY => request.params[AUTH_CODE_KEY],
|
|
199
|
+
ERROR_CODE_KEY => request.params[ERROR_CODE_KEY],
|
|
215
200
|
SESSION_ID_KEY => state[SESSION_ID_KEY],
|
|
216
|
-
SCOPE_KEY => request[SCOPE_KEY]
|
|
201
|
+
SCOPE_KEY => request.params[SCOPE_KEY]
|
|
217
202
|
}
|
|
218
203
|
[callback_state, redirect_uri]
|
|
219
204
|
end
|
data/lib/googleauth.rb
CHANGED
|
@@ -1,31 +1,16 @@
|
|
|
1
|
-
# Copyright 2015
|
|
2
|
-
# All rights reserved.
|
|
1
|
+
# Copyright 2015 Google, Inc.
|
|
3
2
|
#
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
7
6
|
#
|
|
8
|
-
#
|
|
9
|
-
# notice, this list of conditions and the following disclaimer.
|
|
10
|
-
# * Redistributions in binary form must reproduce the above
|
|
11
|
-
# copyright notice, this list of conditions and the following disclaimer
|
|
12
|
-
# in the documentation and/or other materials provided with the
|
|
13
|
-
# distribution.
|
|
14
|
-
# * Neither the name of Google Inc. nor the names of its
|
|
15
|
-
# contributors may be used to endorse or promote products derived from
|
|
16
|
-
# this software without specific prior written permission.
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
17
8
|
#
|
|
18
|
-
#
|
|
19
|
-
#
|
|
20
|
-
#
|
|
21
|
-
#
|
|
22
|
-
#
|
|
23
|
-
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
24
|
-
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
25
|
-
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
26
|
-
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
27
|
-
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
-
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
29
14
|
|
|
30
15
|
require "googleauth/application_default"
|
|
31
16
|
require "googleauth/client_id"
|
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:
|
|
4
|
+
version: 1.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Emiola
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: 0.17.3
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version:
|
|
22
|
+
version: 3.a
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: 0.17.3
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version:
|
|
32
|
+
version: 3.a
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: jwt
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -50,20 +50,6 @@ dependencies:
|
|
|
50
50
|
- - "<"
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
52
|
version: '3.0'
|
|
53
|
-
- !ruby/object:Gem::Dependency
|
|
54
|
-
name: memoist
|
|
55
|
-
requirement: !ruby/object:Gem::Requirement
|
|
56
|
-
requirements:
|
|
57
|
-
- - "~>"
|
|
58
|
-
- !ruby/object:Gem::Version
|
|
59
|
-
version: '0.16'
|
|
60
|
-
type: :runtime
|
|
61
|
-
prerelease: false
|
|
62
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
63
|
-
requirements:
|
|
64
|
-
- - "~>"
|
|
65
|
-
- !ruby/object:Gem::Version
|
|
66
|
-
version: '0.16'
|
|
67
53
|
- !ruby/object:Gem::Dependency
|
|
68
54
|
name: multi_json
|
|
69
55
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -102,16 +88,22 @@ dependencies:
|
|
|
102
88
|
name: signet
|
|
103
89
|
requirement: !ruby/object:Gem::Requirement
|
|
104
90
|
requirements:
|
|
105
|
-
- - "
|
|
91
|
+
- - ">="
|
|
92
|
+
- !ruby/object:Gem::Version
|
|
93
|
+
version: '0.16'
|
|
94
|
+
- - "<"
|
|
106
95
|
- !ruby/object:Gem::Version
|
|
107
|
-
version:
|
|
96
|
+
version: 2.a
|
|
108
97
|
type: :runtime
|
|
109
98
|
prerelease: false
|
|
110
99
|
version_requirements: !ruby/object:Gem::Requirement
|
|
111
100
|
requirements:
|
|
112
|
-
- - "
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0.16'
|
|
104
|
+
- - "<"
|
|
113
105
|
- !ruby/object:Gem::Version
|
|
114
|
-
version:
|
|
106
|
+
version: 2.a
|
|
115
107
|
description: Implements simple authorization for accessing Google APIs, and provides
|
|
116
108
|
support for Application Default Credentials.
|
|
117
109
|
email:
|
|
@@ -128,17 +120,26 @@ files:
|
|
|
128
120
|
- SECURITY.md
|
|
129
121
|
- lib/googleauth.rb
|
|
130
122
|
- lib/googleauth/application_default.rb
|
|
123
|
+
- lib/googleauth/base_client.rb
|
|
131
124
|
- lib/googleauth/client_id.rb
|
|
132
125
|
- lib/googleauth/compute_engine.rb
|
|
133
126
|
- lib/googleauth/credentials.rb
|
|
134
127
|
- lib/googleauth/credentials_loader.rb
|
|
135
128
|
- lib/googleauth/default_credentials.rb
|
|
129
|
+
- lib/googleauth/external_account.rb
|
|
130
|
+
- lib/googleauth/external_account/aws_credentials.rb
|
|
131
|
+
- lib/googleauth/external_account/base_credentials.rb
|
|
132
|
+
- lib/googleauth/external_account/external_account_utils.rb
|
|
133
|
+
- lib/googleauth/external_account/identity_pool_credentials.rb
|
|
134
|
+
- lib/googleauth/external_account/pluggable_credentials.rb
|
|
135
|
+
- lib/googleauth/helpers/connection.rb
|
|
136
136
|
- lib/googleauth/iam.rb
|
|
137
137
|
- lib/googleauth/id_tokens.rb
|
|
138
138
|
- lib/googleauth/id_tokens/errors.rb
|
|
139
139
|
- lib/googleauth/id_tokens/key_sources.rb
|
|
140
140
|
- lib/googleauth/id_tokens/verifier.rb
|
|
141
141
|
- lib/googleauth/json_key_reader.rb
|
|
142
|
+
- lib/googleauth/oauth2/sts_client.rb
|
|
142
143
|
- lib/googleauth/scope_util.rb
|
|
143
144
|
- lib/googleauth/service_account.rb
|
|
144
145
|
- lib/googleauth/signet.rb
|
|
@@ -153,7 +154,7 @@ homepage: https://github.com/googleapis/google-auth-library-ruby
|
|
|
153
154
|
licenses:
|
|
154
155
|
- Apache-2.0
|
|
155
156
|
metadata:
|
|
156
|
-
changelog_uri: https://github.com/googleapis/google-auth-library-ruby/blob/
|
|
157
|
+
changelog_uri: https://github.com/googleapis/google-auth-library-ruby/blob/main/CHANGELOG.md
|
|
157
158
|
source_code_uri: https://github.com/googleapis/google-auth-library-ruby
|
|
158
159
|
bug_tracker_uri: https://github.com/googleapis/google-auth-library-ruby/issues
|
|
159
160
|
post_install_message:
|
|
@@ -164,14 +165,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
164
165
|
requirements:
|
|
165
166
|
- - ">="
|
|
166
167
|
- !ruby/object:Gem::Version
|
|
167
|
-
version: '2.
|
|
168
|
+
version: '2.6'
|
|
168
169
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
169
170
|
requirements:
|
|
170
171
|
- - ">="
|
|
171
172
|
- !ruby/object:Gem::Version
|
|
172
173
|
version: '0'
|
|
173
174
|
requirements: []
|
|
174
|
-
rubygems_version: 3.
|
|
175
|
+
rubygems_version: 3.4.19
|
|
175
176
|
signing_key:
|
|
176
177
|
specification_version: 4
|
|
177
178
|
summary: Google Auth Library for Ruby
|