1

我正在运行以下命令:

rubocop --require rubocop/formatter/checkstyle_formatter --format RuboCop::Formatter::CheckstyleFormatter --no-color --silent --rails --out checkstyle.xml

并得到这个错误:

C:/opscode/chefdk/embedded/lib/ruby/site_ruby/2.0.0/rubygems/core_ext/kernel_require.rb:54:in `require': cannot load such file -- rubocop/formatter/checkstyle_formatter (LoadError)

环境是 Windows 上的 Chef-DK 0.4.0。我已经安装了gem:

gem install rubocop-checkstyle_formatter

RuboCop (0.28.0) 在 Chef-DK 0.4.0 中交付,并且在没有 Formater 的情况下它可以工作。

这是格式化程序的页面:https ://github.com/eitoball/rubocop-checkstyle_formatter

通过谷歌搜索或在stackoverflow中搜索,我没有找到任何解决方案。任何提示如何解决或分析问题?我是红宝石的新手。

4

1 回答 1

1

我以一种相对老套的方式解决了这个问题,但它确实有效。所以基本上 cd 进入你的 rubocop gem 文件夹(比如 /home/ec2-user/.rvm/gems/ruby-2.1.2/gems/rubocop-0.34.2/lib/rubocop),然后你会看到一个名为 formatter 的目录,然后 cd 进入该格式化程序文件夹,您将看到一堆用于不同格式化程序的 .rb 文件。现在解决方案来了。

touch checkstyle_formatter.rb

然后将https://github.com/eitoball/rubocop-checkstyle_formatter/blob/master/lib/rubocop/formatter/checkstyle_formatter.rb复制到您刚刚创建的文件中。

那么你应该很高兴

于 2015-10-05T17:52:03.380 回答