Sha256: 669197a291cc39c1863dbb4f29f3ea1bce25d76c104a4cd812d226a7d56eae06

Contents?: true

Size: 292 Bytes

Versions: 1

Compression:

Stored size: 292 Bytes

Contents

# frozen_string_literal: true

require_relative "controller"

module InertiaFlow
  class Engine < ::Rails::Engine
    initializer "inertia_flow.action_controller" do
      ActiveSupport.on_load(:action_controller_base) do
        include ::InertiaFlow::Controller
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
inertia_flow-0.1.0 lib/inertia_flow/engine.rb