Rubocop找不到inherit_gem

时间:2018-01-26 08:42:01

标签: ruby-on-rails ruby rubygems rubocop

使用配置为使用inherit_gem属性的rubocop从我的rails app root运行rubocop会产生错误;

Unable to find gem gem_name; is the gem installed? Gem::MissingSpecError

但我确认使用bundler和Gemfile安装的gem。

我错过了什么?

1 个答案:

答案 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...>