add missing net-pop and net-imap missing from ruby 3.1.2
This commit is contained in:
parent
d8003d32ac
commit
8cbbd10408
2 changed files with 15 additions and 1 deletions
4
Gemfile
4
Gemfile
|
@ -56,7 +56,9 @@ gem 'lograge'
|
||||||
gem 'logstash-event'
|
gem 'logstash-event'
|
||||||
gem 'mailjet', require: false
|
gem 'mailjet', require: false
|
||||||
gem 'matrix' # needed by prawn and not default in ruby 3.1
|
gem 'matrix' # needed by prawn and not default in ruby 3.1
|
||||||
gem 'net-smtp', require: false # See https://github.com/mikel/mail/pull/1439
|
gem 'net-imap', require: false # See https://github.com/mikel/mail/pull/1439
|
||||||
|
gem 'net-pop', require: false # same
|
||||||
|
gem 'net-smtp', require: false # same
|
||||||
gem 'openid_connect'
|
gem 'openid_connect'
|
||||||
gem 'pg'
|
gem 'pg'
|
||||||
gem 'phonelib'
|
gem 'phonelib'
|
||||||
|
|
12
Gemfile.lock
12
Gemfile.lock
|
@ -217,6 +217,7 @@ GEM
|
||||||
railties (< 7.1)
|
railties (< 7.1)
|
||||||
rotp (~> 6.0)
|
rotp (~> 6.0)
|
||||||
diff-lcs (1.4.4)
|
diff-lcs (1.4.4)
|
||||||
|
digest (3.1.0)
|
||||||
discard (1.2.0)
|
discard (1.2.0)
|
||||||
activerecord (>= 4.2, < 7)
|
activerecord (>= 4.2, < 7)
|
||||||
domain_name (0.5.20190701)
|
domain_name (0.5.20190701)
|
||||||
|
@ -441,6 +442,14 @@ GEM
|
||||||
multipart-post (2.1.1)
|
multipart-post (2.1.1)
|
||||||
mustermann (1.1.1)
|
mustermann (1.1.1)
|
||||||
ruby2_keywords (~> 0.0.1)
|
ruby2_keywords (~> 0.0.1)
|
||||||
|
net-imap (0.2.3)
|
||||||
|
digest
|
||||||
|
net-protocol
|
||||||
|
strscan
|
||||||
|
net-pop (0.1.1)
|
||||||
|
digest
|
||||||
|
net-protocol
|
||||||
|
timeout
|
||||||
net-protocol (0.1.1)
|
net-protocol (0.1.1)
|
||||||
io-wait
|
io-wait
|
||||||
timeout
|
timeout
|
||||||
|
@ -711,6 +720,7 @@ GEM
|
||||||
sprockets (>= 3.0.0)
|
sprockets (>= 3.0.0)
|
||||||
strong_migrations (0.8.0)
|
strong_migrations (0.8.0)
|
||||||
activerecord (>= 5.2)
|
activerecord (>= 5.2)
|
||||||
|
strscan (3.0.1)
|
||||||
swd (1.3.0)
|
swd (1.3.0)
|
||||||
activesupport (>= 3)
|
activesupport (>= 3)
|
||||||
attr_required (>= 0.0.5)
|
attr_required (>= 0.0.5)
|
||||||
|
@ -856,6 +866,8 @@ DEPENDENCIES
|
||||||
mailjet
|
mailjet
|
||||||
matrix
|
matrix
|
||||||
mina
|
mina
|
||||||
|
net-imap
|
||||||
|
net-pop
|
||||||
net-smtp
|
net-smtp
|
||||||
openid_connect
|
openid_connect
|
||||||
pg
|
pg
|
||||||
|
|
Loading…
Reference in a new issue