Hermitage Gem没有显示我的照片(ROR)

时间:2013-11-25 00:17:11

标签: ruby-on-rails ruby paperclip

我在后端安装了回形针宝石,并希望将冬宫宝石作为我的前端;但是,我生成一个未定义的方法文件的错误。与我没有使用的教程不同:file作为我的属性,我将其命名为:photo。这有什么不同或问题是由其他东西发生的?

错误消息

的未定义方法`file'

视图:

<%= render_gallery_for @galleries %>

迁移

class AddAttachmentToGalleries < ActiveRecord::Migration

  def self.up
    add_attachment :galleries, :photo
  end

  def self.down
    remove_attachment :galleries, :photo
  end

end

1 个答案:

答案 0 :(得分:0)

根据自述文件https://github.com/ImmaculatePine/hermitage,您应该在config / initializers / hermitage.rb中执行类似的操作

Hermitage.configure :posts do
  original 'photo'
  thumbnail 'photo(:thumbnail)'
end