-
Notifications
You must be signed in to change notification settings - Fork 460
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
OpenSSL::Digest::Digest is deprecated; use OpenSSL::Digest instead #93
Conversation
Thanks for the pull request. When was OpenSSL::Digest.new introduced? My concern with this change is versions of ruby that don't yet have it will fail here. Could you just wrap it in a respond_to? check? |
OpenSSL::Digest has been available since 1.8.7. I've added the respond_to? check. |
Thanks Matthew. |
OpenSSL::Digest::Digest is deprecated; use OpenSSL::Digest instead
Any chance a new release could be cut to ship this? |
yup...a new release would be much appreciated. Thanks! |
I too would appreciate a new release, or failing that, if it is easy to do, instructions on how to clone and build my own version of the gem locally. |
👍 new version would be great. |
It is close to 3 months since this has been merged to master, please consider releasing a new version |
Still have this issue |
This fixes issue #91 by replacing OpenSSL::Digest::Digest (which is deprecated and produces a warning in Ruby 2.1.0) with OpenSSL::Digest