使用配置为使用inherit_gem属性的rubocop从我的rails app root运行rubocop会产生错误;
Unable to find gem gem_name; is the gem installed? Gem::MissingSpecError
但我确认使用bundler和Gemfile安装的gem。
我错过了什么?
答案 0 :(得分:0)
参考https://github.com/bbatsov/rubocop/blob/master/manual/configuration.md#inheriting-configuration-from-a-remote-url,错误是因为inherit_gem是通过bundler安装的。因此必须使用像;
这样的捆绑器来调用rubocop
$ bundle exec rubocop <options...>