Skip to content

Commit 18347c5

Browse files
authored
fix: onboard issue with openid_connect gem when running "rails g forest_liana:install" (#586)
Closes #585
1 parent 9248739 commit 18347c5

File tree

3 files changed

+33
-26
lines changed

3 files changed

+33
-26
lines changed

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ gem 'jwt'
3232
gem 'bcrypt'
3333
gem 'httparty', '0.18.1'
3434
gem 'ipaddress', '0.8.3'
35-
gem 'openid_connect', '1.2.0'
35+
gem 'openid_connect', '1.4.2'
3636
gem 'json'
37-
gem 'json-jwt', '1.12.0'
37+
gem 'json-jwt', '1.15.0'

Gemfile.lock

Lines changed: 29 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ PATH
99
httparty
1010
ipaddress
1111
json
12-
json-jwt
12+
json-jwt (~> 1.15.0)
1313
jwt
14-
openid_connect
14+
openid_connect (= 1.4.2)
1515
rack-cors
1616
rails (>= 4.0)
1717
useragent
@@ -79,10 +79,10 @@ GEM
7979
activerecord (>= 3.1.0, < 8)
8080
attr_required (1.0.1)
8181
bcrypt (3.1.16)
82-
bindata (2.4.9)
82+
bindata (2.4.13)
8383
builder (3.2.4)
8484
byebug (11.1.3)
85-
concurrent-ruby (1.1.8)
85+
concurrent-ruby (1.1.10)
8686
crass (1.0.6)
8787
diff-lcs (1.4.4)
8888
docile (1.3.5)
@@ -97,14 +97,15 @@ GEM
9797
mime-types (~> 3.0)
9898
multi_xml (>= 0.5.2)
9999
httpclient (2.8.3)
100-
i18n (1.8.10)
100+
i18n (1.12.0)
101101
concurrent-ruby (~> 1.0)
102102
ipaddress (0.8.3)
103103
json (2.5.1)
104-
json-jwt (1.12.0)
104+
json-jwt (1.15.0)
105105
activesupport (>= 4.2)
106106
aes_key_wrap
107107
bindata
108+
httpclient
108109
jwt (2.2.3)
109110
loofah (2.9.1)
110111
crass (~> 1.0.2)
@@ -116,30 +117,35 @@ GEM
116117
mime-types (3.3.1)
117118
mime-types-data (~> 3.2015)
118119
mime-types-data (3.2021.0225)
119-
mini_mime (1.1.0)
120+
mini_mime (1.1.2)
120121
mini_portile2 (2.5.0)
121-
minitest (5.14.4)
122+
minitest (5.16.3)
122123
multi_xml (0.6.0)
124+
net-protocol (0.1.3)
125+
timeout
126+
net-smtp (0.3.2)
127+
net-protocol
123128
nio4r (2.5.7)
124129
nokogiri (1.11.3)
125130
mini_portile2 (~> 2.5.0)
126131
racc (~> 1.4)
127-
openid_connect (1.2.0)
132+
openid_connect (1.4.2)
128133
activemodel
129134
attr_required (>= 1.0.0)
130-
json-jwt (>= 1.5.0)
131-
rack-oauth2 (>= 1.6.1)
132-
swd (>= 1.0.0)
135+
json-jwt (>= 1.15.0)
136+
net-smtp
137+
rack-oauth2 (~> 1.21)
138+
swd (~> 1.3)
133139
tzinfo
134140
validate_email
135141
validate_url
136-
webfinger (>= 1.0.1)
137-
public_suffix (4.0.6)
142+
webfinger (~> 1.2)
143+
public_suffix (5.0.0)
138144
racc (1.5.2)
139-
rack (2.2.3)
145+
rack (2.2.4)
140146
rack-cors (1.1.1)
141147
rack (>= 2.0.0)
142-
rack-oauth2 (1.16.0)
148+
rack-oauth2 (1.21.3)
143149
activesupport
144150
attr_required
145151
httpclient
@@ -204,28 +210,29 @@ GEM
204210
activesupport (>= 4.0)
205211
sprockets (>= 3.0.0)
206212
sqlite3 (1.4.2)
207-
swd (1.2.0)
213+
swd (1.3.0)
208214
activesupport (>= 3)
209215
attr_required (>= 0.0.5)
210216
httpclient (>= 2.4)
211217
thor (1.1.0)
212218
thread_safe (0.3.6)
219+
timeout (0.3.0)
213220
tzinfo (1.2.10)
214221
thread_safe (~> 0.1)
215222
useragent (0.16.10)
216223
validate_email (0.1.6)
217224
activemodel (>= 3.0)
218225
mail (>= 2.2.5)
219-
validate_url (1.0.13)
226+
validate_url (1.0.15)
220227
activemodel (>= 3.0.0)
221228
public_suffix
222-
webfinger (1.1.0)
229+
webfinger (1.2.0)
223230
activesupport
224231
httpclient (>= 2.4)
225232
websocket-driver (0.7.3)
226233
websocket-extensions (>= 0.1.0)
227234
websocket-extensions (0.1.5)
228-
zeitwerk (2.4.2)
235+
zeitwerk (2.6.1)
229236

230237
PLATFORMS
231238
ruby
@@ -240,9 +247,9 @@ DEPENDENCIES
240247
httparty (= 0.18.1)
241248
ipaddress (= 0.8.3)
242249
json
243-
json-jwt (= 1.12.0)
250+
json-jwt (= 1.15.0)
244251
jwt
245-
openid_connect (= 1.2.0)
252+
openid_connect (= 1.4.2)
246253
rack-cors
247254
rails (= 6.0.3.6)
248255
rake

forest_liana.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ Gem::Specification.new do |s|
2828
s.add_runtime_dependency "httparty"
2929
s.add_runtime_dependency "ipaddress"
3030
s.add_runtime_dependency "json"
31-
s.add_runtime_dependency "json-jwt"
32-
s.add_runtime_dependency "openid_connect"
31+
s.add_runtime_dependency "json-jwt", "~> 1.15.0"
32+
s.add_runtime_dependency "openid_connect", "1.4.2"
3333
end

0 commit comments

Comments
 (0)