Skip to content

Commit 95b9afa

Browse files
committed
fix unix-crypt require syntax
Bundle reported: [!] There was an error parsing `Gemfile`: You passed :require_name as an option for gem 'unix-crypt', but it is invalid. Valid options are: group, groups, git, path, glob, name, branch, ref, tag, require, submodules, platform, platforms, type, source, install_if, gemfile, github, gist, bitbucket. You may be able to resolve this by upgrading Bundler to the newest version.. Bundler cannot continue. Looks like maybe :require_name was ignored before, but now bundler is validating the options passed to it. This changes it to the correct way of naming the file to require.
1 parent 7d33a57 commit 95b9afa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525
gem 'bcrypt', '3.1.3'
26-
gem 'unix-crypt', '1.3.0', :require_name => 'unix_crypt'
26+
gem 'unix-crypt', '1.3.0', require: 'unix_crypt'
2727

2828
gem 'ffi', '1.15.5', require: false
2929
gem 'ffi-compiler', '1.0.1', require: false

0 commit comments

Comments
 (0)