-
-
Notifications
You must be signed in to change notification settings - Fork 229
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
Old thor version can cause errors from Ruby 2.5 #239
Labels
Comments
see #237 |
mike-burns
added a commit
to thoughtbot/suspenders
that referenced
this issue
Apr 24, 2020
Use bundler-audit 0.7.0, currently in pre-release. It has an up-to-date Thor dependency, which fixes an incompatibility with Bundler 2. Here is a trail of bug reports and fixes against the repo: * <rubysec/bundler-audit#239> * <rubysec/bundler-audit#237> * <rubysec/bundler-audit#252>
mike-burns
added a commit
to thoughtbot/suspenders
that referenced
this issue
Apr 24, 2020
Use bundler-audit 0.7.0, currently in pre-release. It has an up-to-date Thor dependency, which fixes an incompatibility with Bundler 2. Here is a trail of bug reports and fixes against the repo: * <rubysec/bundler-audit#239> * <rubysec/bundler-audit#237> * <rubysec/bundler-audit#252>
mike-burns
added a commit
to thoughtbot/suspenders
that referenced
this issue
Apr 24, 2020
Use bundler-audit 0.7.0, currently in pre-release. It has an up-to-date Thor dependency, which fixes an incompatibility with Bundler 2. Here is a trail of bug reports and fixes against the repo: * <rubysec/bundler-audit#239> * <rubysec/bundler-audit#237> * <rubysec/bundler-audit#252>
mike-burns
added a commit
to thoughtbot/suspenders
that referenced
this issue
Apr 24, 2020
Use bundler-audit 0.7.0, currently in pre-release. It has an up-to-date Thor dependency, which fixes an incompatibility with Bundler 2. Here is a trail of bug reports and fixes against the repo: * <rubysec/bundler-audit#239> * <rubysec/bundler-audit#237> * <rubysec/bundler-audit#252>
bundler-audit updated the thor dependency to |
postmodern
added
duplicate
dependencies
Pull requests that update a dependency file
labels
Dec 17, 2020
Web-Go-To
added a commit
to Web-Go-To/rails_suspenders
that referenced
this issue
Mar 23, 2023
Use bundler-audit 0.7.0, currently in pre-release. It has an up-to-date Thor dependency, which fixes an incompatibility with Bundler 2. Here is a trail of bug reports and fixes against the repo: * <rubysec/bundler-audit#239> * <rubysec/bundler-audit#237> * <rubysec/bundler-audit#252>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We are using Rails 5.2.4 and Ruby 2.5.x and your awesome gem as well. After some gem updates the
thor
gem version was updated to0.20.3
and when I try to run a rake command likebundle exec rake -T
got this error:TypeError: NameErrorCheckers is not a module
After a long investigation I realised that the
thor
gem caused this because they start to supportdid_you_mean
library. The problem is that this support is old and in the mean time thedid_you_mean
library was changed fromhttps://github.com/ruby/did_you_mean/blob/v1.1.3/lib/did_you_mean/spell_checkers/name_error_checkers.rb (this is using Ruby 2.4)
to
https://github.com/ruby/did_you_mean/blob/v1.2.0/lib/did_you_mean/spell_checkers/name_error_checkers.rb (this is using Ruby 2.5)
The
thor
gem was updated so version1.x
can solve the issue, but your gem does not let us to update this gem. Thethor
gem should stay on0.20.0
because of that.Could you update your
thor
support, please?The text was updated successfully, but these errors were encountered: