【发布时间】:2014-04-07 23:40:58
【问题描述】:
首先,对于任何混淆/不清晰,我提前道歉,这是我的第一篇 stackoverflow 帖子。
我为我的炼油厂应用构建了一个自定义引擎,具有典型的:
rails generate refinery:engine web_users first_name:string last_name:string...
运行它会在 gemfile 中放置一个 gem,如下所示:
gem 'refinerycms-web_users', :path => 'vendor/extensions'
但是,我的 gemfile 中也有 'refinerycms-acts-as-indexed', '~> 1.0.0' 作为我的前端框架(特别是用于移动菜单导航)。
运行包更新时出现以下错误:
refinerycms (~> 2.1.2) ruby depends on
refinerycms-core (= 2.1.2) ruby
refinerycms-web_users (>= 0) ruby depends on
refinerycms-core (2.0.10)
是否有降级作为索引的解决方案以与refinerycms-core (2.0.10) 配合使用,或者提高自定义引擎对refinerycms 2.1.2 的依赖性?
谢谢errrrybody!
抱歉,我没有将错误与作为索引的行为与refinerycms core 2.1.0 一起使用:
refinerycms-acts-as-indexed (~> 1.0.0) ruby depends on
refinerycms-core (~> 2.1.0) ruby
【问题讨论】: