I can't read rubocop under bundle

Asked 2 years ago, Updated 2 years ago, 96 views

bundle exec rubocop seems to be using an older version of rubocop, but how can I use the rubocop managed by the bundleer?

$bundle exec rubocop-v

warning: parser/current is loading parser/ruby22, which recognizes
warning: 2.2.x-component syntax, but you are running 2.3.1.
warning —Please see https://github.com/whitequark/parser#compatibility-with-ruby-mri.
0.35.1

$rubocop-v

0.46.0

$whichrubocop

/usr/local/bin/rubocop


$bundle exec which rubocop

/usr/local/bin/rubocop

ruby-on-rails ruby bundler

2022-09-30 14:57

1 Answers

I think it's because the rubocop version written in Gemfile.lock is old.

bundle update rubocop is a good idea.


2022-09-30 14:57

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.