3

我在 Refinery CMS 中创建了一个新应用程序,并按照他们的指南进行操作。http://refinerycms.com/download

但是当我去运行 rails server 时,我得到了关于 gem 依赖的错误。通常这些很容易修复。但是当你有冲突的依赖关系时该怎么办?这是我得到的错误之一

Bundler could not find compatible versions for gem "refinerycms-core":
  In Gemfile:
    refinerycms-blog (~> 2.0.0) ruby depends on
      refinerycms-core (~> 2.0.0) ruby

    refinerycms (~> 2.1.0) ruby depends on
      refinerycms-core (2.1.0)

当我过去遇到这个问题并添加了特定的 gem 时,它仍然会给我一个错误,说它也需要另一个 gem。我在这里做错了什么?

4

1 回答 1

3

炼油厂的人在推特上给我发了这个链接

https://github.com/refinery/refinerycms/issues/2386#issuecomment-22978992

它说所以将宝石更改为

gem 'refinerycms-blog', github: 'refinery/refinerycms-blog', branch: 'master'
于 2013-08-21T18:27:49.097 回答