-
-
Notifications
You must be signed in to change notification settings - Fork 280
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
Missing 'forwardable' require in Shoryuken v3.1.3 #408
Comments
Hi @rbroemeling Could you try |
@phstc The gem is installed on the system for this particular use case, it isn't bundled. |
@rbroemeling you are right! I'm just waiting for C before merging #409. Thanks for reporting this 🍻 |
@phstc Sure thing, thanks for the quick turn-around! |
require 'forwardable' to allow using without bundle exec Fixes #408
@rbroemeling 3.1.4 is out with your fix 🎉 |
@phstc Confirmed that v3.1.4 fixes the problem, thanks very much! |
On a clean install of Shoryuken v3.1.3, Shoryuken stacktraces like this:
This is because 'forwardable' is not required in the Shoryuken source.
Adding
require 'forwardable'
to lib/shoryuken.rb fixes the problem, after which Shoryuken launches properly:This issue manifests under ruby v2.3.3p222/rubygems v2.6.6.
The text was updated successfully, but these errors were encountered: