Sha256: 50e7f5927a2493e1174dcf3ba5d2b52618bc3463c87c21e800c2e1ab3dbfd228

Contents?: true

Size: 418 Bytes

Versions: 1

Compression:

Stored size: 418 Bytes

Contents

module ThinkFeelDoEngine
  # The mountable application engine.
  class Engine < ::Rails::Engine
    isolate_namespace ThinkFeelDoEngine

    config.to_prepare do
      Devise::SessionsController.layout "think_feel_do_engine"
    end

    initializer "think_feel_do_engine.action_controller" do
      ActiveSupport.on_load :action_controller do
        helper ThinkFeelDoEngine::TasksHelper
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
think_feel_do_engine-3.10.6 lib/think_feel_do_engine/engine.rb