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 failure to upload sponsor logos on Ruby 3.2.2 #1921

Merged
merged 1 commit into from
Sep 9, 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 Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gem 'bootsnap', '>= 1.4.4', require: false

gem 'acts-as-taggable-on'
gem 'carrierwave'
gem 'carrierwave-ftp', require: 'carrierwave/storage/sftp'
gem 'carrierwave-ftp', github: 'luan/carrierwave-ftp', ref: '5481c13', require: 'carrierwave/storage/sftp'
gem 'cocoon'
gem 'delayed_job'
gem 'delayed_job_active_record'
Expand Down
22 changes: 14 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
GIT
remote: https://github.com/luan/carrierwave-ftp.git
revision: 5481c1335fd3285d2057c7056e8a4662daa68dd4
ref: 5481c13
specs:
carrierwave-ftp (0.4.1)
carrierwave (>= 0.6.2)
double-bag-ftps (~> 0.1.4)
net-sftp (~> 4.0.0)

GEM
remote: https://rubygems.org/
specs:
Expand Down Expand Up @@ -100,10 +110,6 @@ GEM
image_processing (~> 1.1)
marcel (~> 1.0.0)
ssrf_filter (~> 1.0)
carrierwave-ftp (0.4.1)
carrierwave (>= 0.6.2)
double-bag-ftps (= 0.1.3)
net-sftp (~> 2.1.2)
chosen-rails (1.10.0)
coffee-rails (>= 3.2)
railties (>= 3.0)
Expand Down Expand Up @@ -140,7 +146,7 @@ GEM
dotenv-rails (2.8.1)
dotenv (= 2.8.1)
railties (>= 3.2)
double-bag-ftps (0.1.3)
double-bag-ftps (0.1.4)
erubi (1.12.0)
execjs (2.8.1)
fabrication (2.30.0)
Expand Down Expand Up @@ -221,8 +227,8 @@ GEM
net-protocol
net-protocol (0.2.1)
timeout
net-sftp (2.1.2)
net-ssh (>= 2.6.5)
net-sftp (4.0.0)
net-ssh (>= 5.0.0, < 8.0.0)
net-smtp (0.3.3)
net-protocol
net-ssh (7.2.0)
Expand Down Expand Up @@ -472,7 +478,7 @@ DEPENDENCIES
bullet
capybara (>= 3.26)
carrierwave
carrierwave-ftp
carrierwave-ftp!
chosen-rails
cocoon
commonmarker
Expand Down
Loading