2012-10-04 82 views
0

3.2範圍內的組合我在我的Rails應用程序印象派的寶石,我想創建一個範圍,返回最看項目,加入is_impressionable到模型中,我能夠返回觀看次數(如在數對使用object.impressionist_count方法,但我不知道如何創建在我的模型大多數觀察對象範圍的資源視圖)。通過impressionist gem創建的表名是impressions 您的幫助將是非常讚賞 感謝軌與印象派寶石

回答

0

您可以創建一個模型,例如CustomImpression和設置表:

class CustomImpression < ActiveRecord::Base 
    set_table_name 'impressions' 

    belongs_to :user 

    scope :my_custom_scope, ... 

    def my_custom_function 
    ... 
    end 
end