Sha256: 02ce9dbb93099932af18ea8c31e11cdd1ff09f04d988e86893f5857c82486132

Contents?: true

Size: 389 Bytes

Versions: 1

Compression:

Stored size: 389 Bytes

Contents

# typed: strong
module Titleist
  # Extensions into the Rails framework that mixin the controller and
  # helper modules when ActionController and ActionView are loaded.
  class Engine < Rails::Engine
    ActiveSupport.on_load :action_controller_base do
      include Titleist::Controller
    end

    ActiveSupport.on_load :action_view do
      include Titleist::Helper
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
titleist-1.0.0 lib/titleist/engine.rb