1

我正在使用带有自定义引擎的 Refinery CMS,但无法运行heroku rake db:seed. 似乎这导致我的应用程序在生产中中断。

在本地一切正常,但是当我尝试为我的数据库播种时,我得到了这个输出:

https://gist.github.com/f90b545dc85c44addffd

关于可能导致此问题的任何想法。这是我的seeds.rb 文件:

(Refinery.i18n_enabled? ? Refinery::I18n.frontend_locales : [:en]).each do |lang|
  I18n.locale = lang

  if defined?(Refinery::User)
    Refinery::User.all.each do |user|
      if user.plugins.where(:name => 'refinerycms-projects').blank?
        user.plugins.create(:name => 'refinerycms-projects',
                            :position => (user.plugins.maximum(:position) || -1) +1)
      end
    end
  end

  url = "/projects"
  if defined?(Refinery::Page) && Refinery::Page.where(:link_url => url).empty?
    page = Refinery::Page.create(
      :title => 'Projects',
      :link_url => url,
      :deletable => false,
      :menu_match => "^#{url}(\/|\/.+?|)$"
    )
    Refinery::Pages.default_parts.each_with_index do |default_page_part, index|
      page.parts.create(:title => default_page_part, :body => nil, :position => index)
    end
  end
end
4

1 回答 1

0

为了解决这个问题,我需要ruby '1.9.3'在我的 gemfile 中指定。显然,这与将 Refinery CMS 应用程序部署到 Heroku 有关。

ruby '1.9.3'一旦我在我的 gemfile 中部署到 heroku,我就heroku run rake db:seed没有问题了。

更多信息在这里:

https://groups.google.com/forum/?fromgroups=#!topic/refinery-cms/bvGsot-wFxc

于 2013-01-18T16:18:27.443 回答