Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix to avoid warnings after rails 6.1.7.2 update #1414

Merged
merged 3 commits into from
Apr 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-2.7.7
ruby-2.7.8
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@ gem 'remotipart', '~> 1.4.4' # Allows file upload in AJAX forms

gem 'rails-static-router'

# to avoid warnings after rails 6.1.7.2 update - see https://github.com/ruby/net-imap/issues/16
gem "net-http"
gem "net-ftp"
gem "uri", "0.10.0.2"

group :production do
gem 'passenger'
end
Expand Down
13 changes: 12 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,11 @@ GEM
mysql2 (0.5.3)
namae (1.1.1)
nesty (1.0.2)
net-ftp (0.2.0)
net-protocol
time
net-http (0.3.2)
uri
net-http-digest_auth (1.4.1)
net-http-persistent (4.0.1)
connection_pool (~> 2.2)
Expand Down Expand Up @@ -851,6 +856,8 @@ GEM
test-prof (1.0.7)
thor (1.2.1)
tilt (2.0.10)
time (0.2.2)
date
timeout (0.3.2)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
Expand All @@ -868,6 +875,7 @@ GEM
unicorn-rails (2.2.1)
rack
unicorn
uri (0.10.0.2)
uuid (2.3.9)
macaddr (~> 1.0)
validate_email (0.1.6)
Expand Down Expand Up @@ -985,6 +993,8 @@ DEPENDENCIES
minitest-reporters
my_responds_to_parent!
mysql2
net-ftp
net-http
nokogiri (~> 1.13.10)
omniauth (~> 2.1.0)
omniauth-github
Expand Down Expand Up @@ -1049,6 +1059,7 @@ DEPENDENCIES
terser (~> 1.1, >= 1.1.1)
test-prof
unicorn-rails
uri (= 0.10.0.2)
uuid (~> 2.3)
validate_url
vcr (~> 2.9)
Expand All @@ -1062,4 +1073,4 @@ DEPENDENCIES
zenodo-client!

BUNDLED WITH
2.3.26
2.4.9