Skip to content

Commit 79327a2

Browse files
committed
⬆️ ruby-openid2
- Fixes undeclared dependencies
1 parent 7421a86 commit 79327a2

File tree

2 files changed

+26
-14
lines changed

2 files changed

+26
-14
lines changed

Gemfile.lock

+25-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
GIT
2-
remote: https://github.com/VitalConnectInc/rots
3-
revision: d11e7d820fa8b9ad49aaca5b9317ec84f5a73b46
2+
remote: https://github.com/oauth-xx/rots
3+
revision: caeacbf72b3b5966c3a299391911557d5771ceee
44
specs:
55
rots (0.2.2)
6+
net-http
7+
rack (>= 2.0)
8+
ruby-openid2 (~> 3.0)
9+
yaml
610

711
PATH
812
remote: .
913
specs:
1014
rack-openid2 (2.0.1)
1115
rack (>= 2.2)
12-
ruby-openid2 (>= 3.0)
16+
ruby-openid2 (~> 3.0, >= 3.0.1)
1317
version_gem (~> 1.1, >= 1.1.4)
1418

1519
GEM
@@ -37,6 +41,9 @@ GEM
3741
minitest (5.25.1)
3842
minitest-rg (5.3.0)
3943
minitest (~> 5.0)
44+
net-http (0.4.1)
45+
uri
46+
ostruct (0.6.0)
4047
parallel (1.26.3)
4148
parser (3.3.5.0)
4249
ast (~> 2.4.1)
@@ -73,8 +80,8 @@ GEM
7380
rubocop-ruby2_7 (>= 2.0.4, < 3)
7481
standard-rubocop-lts (>= 1.0.3, < 3)
7582
version_gem (>= 1.1.2, < 3)
76-
rubocop-md (1.2.2)
77-
rubocop (>= 1.0)
83+
rubocop-md (1.2.3)
84+
rubocop (>= 1.45)
7885
rubocop-minitest (0.36.0)
7986
rubocop (>= 1.61, < 2.0)
8087
rubocop-ast (>= 1.31.1, < 2.0)
@@ -97,7 +104,9 @@ GEM
97104
rubocop (~> 1.51)
98105
rubocop-thread_safety (0.5.1)
99106
rubocop (>= 0.90.0)
100-
ruby-openid2 (3.0.0)
107+
ruby-openid2 (3.0.1)
108+
net-http (~> 0.4, >= 0.4.1)
109+
rexml (~> 3.3, >= 3.3.7)
101110
version_gem (~> 1.1, >= 1.1.4)
102111
ruby-progressbar (1.13.0)
103112
simplecov (0.22.0)
@@ -107,11 +116,11 @@ GEM
107116
simplecov-cobertura (2.1.0)
108117
rexml
109118
simplecov (~> 0.19)
110-
simplecov-console (0.9.1)
119+
simplecov-console (0.9.2)
111120
ansi
112121
simplecov
113122
terminal-table
114-
simplecov-html (0.12.3)
123+
simplecov-html (0.13.1)
115124
simplecov-lcov (0.8.0)
116125
simplecov-rcov (0.3.7)
117126
simplecov (>= 0.4.1)
@@ -136,11 +145,14 @@ GEM
136145
version_gem (>= 1.1.4, < 3)
137146
terminal-table (3.0.2)
138147
unicode-display_width (>= 1.1.1, < 3)
139-
unicode-display_width (2.5.0)
148+
unicode-display_width (2.6.0)
149+
uri (0.13.1)
140150
version_gem (1.1.4)
151+
yaml (0.3.0)
141152
yard (0.9.37)
142-
yard-junk (0.0.9)
153+
yard-junk (0.0.10)
143154
backports (>= 3.18)
155+
ostruct
144156
rainbow
145157
yard
146158

@@ -150,10 +162,10 @@ PLATFORMS
150162
DEPENDENCIES
151163
byebug (>= 11)
152164
kettle-soup-cover (~> 1.0, >= 1.0.2)
153-
minitest
154-
minitest-rg
165+
minitest (>= 5)
166+
minitest-rg (>= 5)
155167
rack-openid2!
156-
rack-session
168+
rack-session (>= 2)
157169
rake (>= 13)
158170
rots!
159171
rubocop-lts (~> 18.2, >= 18.2.1)

rack-openid2.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Gem::Specification.new do |spec|
4242
spec.metadata["rubygems_mfa_required"] = "true"
4343

4444
spec.add_dependency("rack", ">= 2.2")
45-
spec.add_dependency("ruby-openid2", ">= 3.0")
45+
spec.add_dependency("ruby-openid2", "~> 3.0", ">= 3.0.1")
4646
spec.add_dependency("version_gem", "~> 1.1", ">= 1.1.4")
4747

4848
# Testing

0 commit comments

Comments
 (0)