# frozen_string_literal: true module Spearly module Auth class Engine < ::Rails::Engine initializer 'spearly.helpers' do ActiveSupport.on_load(:action_controller) do include Spearly::Auth::Rails::Helpers end end end end end