Я хочу включить этот модуль в каждую модель ActiveRecord в моем приложении Rails, не пропуская include NotificationResourceableTraits
в каждом файле. Есть ли способ?
module NotificationResourceableTraits
def self.included(base)
base.has_many :notification_resources, :as => :notification_resourceable
base.has_many :notifications, :through => :notification_resources
end
end