我正在尝试修补Ahoy :: Message模型,以添加一些自定义范围来清理我们的rails应用程序:
module Ahoy
class Message
scope :for_my_mailer, -> {where("mailer LIKE 'MyMailer#%'")}
end
end
但是我遇到以下错误:
undefined method `scope' for Ahoy::Message:Class (NoMethodError)
如何添加这些自定义范围?