require 'rails' module NotifiablyAudited class Engine < ::Rails::Engine initializer 'notifiably_audited' do |app| ActiveSupport.on_load(:action_view) do require "notifiably_audited/helper" class ActionView::Base include NotifiablyAudited::NotifiablyAuditedHelpers end end end end end