We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
When the CMAC gem is installed using gem install it throws an error when used.
gem install
require.rb:54:in require': cannot load such file -- cmac-rb/wrapper (LoadError)
I've fixed it by changing the top require in cmac-rb.rb from:
cmac-rb.rb
require 'cmac-rb/wrapper'
require 'cmac/wrapper'
Maybe useful to fix this, I can also create a PR for this if you prefer.
The text was updated successfully, but these errors were encountered:
If you can create a PR I will merge! Thanks.
Best, Louis
Sent from my iPhone
On May 4, 2016, at 7:24 AM, Roy Kokkelkoren [email protected] wrote: Hi, When the CMAC gem is installed using gem install it throws an error when used. require.rb:54:inrequire': cannot load such file -- cmac-rb/wrapper (LoadError)` I've fixed it by changing the top require in cmac-rb.rb from: From: require 'cmac-rb/wrapper' To: require 'cmac/wrapper' Maybe useful to fix this, I can also create a PR for this if you prefer. — You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub
On May 4, 2016, at 7:24 AM, Roy Kokkelkoren [email protected] wrote:
require.rb:54:inrequire': cannot load such file -- cmac-rb/wrapper (LoadError)`
From: require 'cmac-rb/wrapper' To: require 'cmac/wrapper' Maybe useful to fix this, I can also create a PR for this if you prefer.
— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub
Sorry, something went wrong.
No branches or pull requests
Hi,
When the CMAC gem is installed using
gem install
it throws an error when used.require.rb:54:in require': cannot load such file -- cmac-rb/wrapper (LoadError)
I've fixed it by changing the top require in
cmac-rb.rb
from:require 'cmac-rb/wrapper'
require 'cmac/wrapper'
Maybe useful to fix this, I can also create a PR for this if you prefer.
The text was updated successfully, but these errors were encountered: