class Idea < ActiveRecord::Base
attr_accessible :archived, :checked, :content, :note, :stared
scope :stared, -> { where(stared: true)
end
使用此代码,我如何测试是否stared
在Idea
. 我想要这个效果
Idea.has_scope?(:stared)
=> true
Idea.has_scope?(:unknown)
=> false