6

我安装了 2 个插件(redmine_backlogs 和 redmine_ldap_sync),但是在 redmine_ldap_sync 从 2.0.0 升级到 2.0.1 之后,添加了一个 Gemfile。

这里积压的 Gemfile https://github.com/backlogs/redmine_backlogs/blob/v1.0.2/Gemfile 和 ldap sync 的 Gemfile https://github.com/thorin/redmine_ldap_sync/blob/2.0.1/Gemfile

在这两种情况下,simplecov都在测试组中。我试着跑

bundle install --without development test

但我收到了这个错误:

You cannot specify the same gem twice with different version requirements. 
You specified: simplecov (>= 0) and simplecov (~> 0.6)

这似乎没有意义。有没有办法在不编辑文件的情况下绕过它?

谢谢

4

1 回答 1

13

插件中的所有 Gemfile 都与通用文件合并。只需删除simplecov (>= 0)插件 Gemfile 之一中的语句。这不是犯罪或非法的。

于 2013-06-20T12:03:30.473 回答