-
Notifications
You must be signed in to change notification settings - Fork 374
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
need to require 'forwardable'
to use Forwardable
#316
Comments
Which version of openssl is installed in you environment? Please try to update it to version ~> 2.1. |
Looks like the official Ruby 2.3 docker image comes with OpenSSL 1.1.1:
I'm not interested in updating a system library, nor do I understand how it is related, since |
I've had the same problem: https://github.com/railscltgroup/firebase_auth/blob/master/lib/firebase_ruby_auth.rb I have a similar file in a personal Rails app. I don't get any errors in my Rails app. However, when I'm just working on this gem, the |
I get an error from JWT 2.2.0 on Ruby 2.3 and 2.5.
JWT::JWK::RSA
extendsForwardable
, but there is norequire 'forwardable'
in the gem. I worked around this in my script by explicitly requiring forwardable.This fails:
This doesn't fail:
The text was updated successfully, but these errors were encountered: