Skip to content
Snippets Groups Projects
Unverified Commit 957a70f6 authored by Yorick Peterse's avatar Yorick Peterse
Browse files

Fix requiring the rubyzip Gem

In commit 6fa5fd85 the `require: false`
was removed to ensure the Gem was loaded at run time. Unfortunately, the
`require` necessary for the rubyzip Gem is "zip" and not "rubyzip". As a
result, Bundler would not require the Gem. This meant that we would
still run into constant errors when referring to `Zip::File`.
parent 52e1ae05
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -66,7 +66,7 @@ gem 'u2f', '~> 0.2.1'
 
# GitLab Pages
gem 'validates_hostname', '~> 1.0.6'
gem 'rubyzip', '~> 1.2.2'
gem 'rubyzip', '~> 1.2.2', require: 'zip'
 
# Browser detection
gem 'browser', '~> 2.5'
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment