我有獅身人面像和思維獅身人面像2.0.5安裝在我的應用程序,並且我一直試圖運行命令rake ts:index
它給了我這個錯誤:Rake任務中止,思維獅身人面像未定義的方法'索引'?
rake aborted!
undefined method `indexes' for #<Riddle::Configuration:0x41b57b0>
是在談論我的Product
模式?
class Product < ActiveRecord::Base
attr_accessible :name
validates_presence_of :name
define_index do
indexes :name
end
end
爲什麼我得到這個,我該如何解決它?
我們無法知道如果它在談論產品模型。你嘗試過運行'rake ts:index --trace'嗎?你會得到這樣一個堆棧跟蹤。 – Wukerplank
@Wukerplank好吧,我跑了'rake ts:index --trace',這裏是我的https://gist.github.com/1345070,所以你可以看看它。 – LearningRoR