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
I was getting this error when trying to load Rails 7 and Ruby 3.1.2
`require': cannot load such file -- matrix (LoadError)
As of Ruby 3.1.0 the matrix default gem are now bundled gems. https://stackoverflow.com/questions/71991514/rails-require-cannot-load-such-file-matrix https://www.ruby-lang.org/en/news/2021/12/25/ruby-3-1-0-released/
Adding the matrix gem to the Gemfile solved the issue.
Gemfile
gem 'matrix'
The text was updated successfully, but these errors were encountered:
be79109
Hey @jfanals, thanks for reporting! Fixed in the commit above (not sure why I only thought it was needed for Daru). Will push a new release shortly.
Sorry, something went wrong.
That was fast!
Thank you for your amazing gems :)
No branches or pull requests
I was getting this error when trying to load Rails 7 and Ruby 3.1.2
As of Ruby 3.1.0 the matrix default gem are now bundled gems.
https://stackoverflow.com/questions/71991514/rails-require-cannot-load-such-file-matrix
https://www.ruby-lang.org/en/news/2021/12/25/ruby-3-1-0-released/
Adding the matrix gem to the
Gemfile
solved the issue.The text was updated successfully, but these errors were encountered: