omniauth-globus 0.8.7 → 0.9.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/.github/workflows/build.yml +37 -0
- data/.github/workflows/changelog.yml +36 -0
- data/.github/workflows/release.yml +47 -0
- data/.rubocop.yml +5 -11
- data/Gemfile +3 -1
- data/Gemfile.lock +59 -44
- data/README.md +1 -0
- data/codemeta.json +38 -0
- data/lib/omniauth-globus.rb +3 -1
- data/lib/omniauth/globus.rb +1 -1
- data/lib/omniauth/globus/version.rb +1 -1
- data/lib/omniauth/strategies/globus.rb +71 -71
- data/omniauth-globus.gemspec +1 -1
- data/spec/omniauth/strategies/globus_spec.rb +199 -198
- data/spec/rubocop_spec.rb +4 -4
- metadata +10 -11
data/spec/rubocop_spec.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative
|
3
|
+
require_relative "spec_helper"
|
4
4
|
|
5
|
-
describe
|
6
|
-
it
|
7
|
-
expect(`rubocop`).to include(
|
5
|
+
describe "Rubocop" do
|
6
|
+
it "should pass with no offenses detected" do
|
7
|
+
expect(`rubocop`).to include("no offenses detected")
|
8
8
|
end
|
9
9
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-globus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Fenner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-05-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -28,14 +28,14 @@ dependencies:
|
|
28
28
|
name: omniauth
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '1.9'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1.9'
|
41
41
|
- !ruby/object:Gem::Dependency
|
@@ -171,6 +171,9 @@ extensions: []
|
|
171
171
|
extra_rdoc_files:
|
172
172
|
- README.md
|
173
173
|
files:
|
174
|
+
- ".github/workflows/build.yml"
|
175
|
+
- ".github/workflows/changelog.yml"
|
176
|
+
- ".github/workflows/release.yml"
|
174
177
|
- ".gitignore"
|
175
178
|
- ".rubocop.yml"
|
176
179
|
- ".travis.yml"
|
@@ -178,6 +181,7 @@ files:
|
|
178
181
|
- Gemfile.lock
|
179
182
|
- LICENSE
|
180
183
|
- README.md
|
184
|
+
- codemeta.json
|
181
185
|
- lib/omniauth-globus.rb
|
182
186
|
- lib/omniauth/globus.rb
|
183
187
|
- lib/omniauth/globus/version.rb
|
@@ -207,13 +211,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
207
211
|
- !ruby/object:Gem::Version
|
208
212
|
version: '0'
|
209
213
|
requirements: []
|
210
|
-
rubygems_version: 3.0.1
|
214
|
+
rubygems_version: 3.0.3.1
|
211
215
|
signing_key:
|
212
216
|
specification_version: 4
|
213
217
|
summary: Globus OpenId connect Strategy for OmniAuth 1.0
|
214
|
-
test_files:
|
215
|
-
- spec/fixtures/access_token.json
|
216
|
-
- spec/fixtures/request_info.json
|
217
|
-
- spec/omniauth/strategies/globus_spec.rb
|
218
|
-
- spec/rubocop_spec.rb
|
219
|
-
- spec/spec_helper.rb
|
218
|
+
test_files: []
|