Sha256: f5e57441c826f3caa40acf5d4881444e33cb4be6e765d42e50df9f698639b64b
Contents?: true
Size: 851 Bytes
Versions: 1
Compression:
Stored size: 851 Bytes
Contents
require "action_controller" require "rails" require "action_view/railtie" module ActionController class Railtie < Rails::Railtie railtie_name :action_controller require "action_controller/railties/subscriber" subscriber ActionController::Railties::Subscriber.new initializer "action_controller.logger" do ActionController::Base.logger ||= Rails.logger end initializer "action_controller.set_configs" do |app| app.config.action_controller.each do |k,v| ActionController::Base.send "#{k}=", v end end initializer "action_controller.initialize_framework_caches" do ActionController::Base.cache_store ||= RAILS_CACHE end initializer "action_controller.set_helpers_path" do |app| ActionController::Base.helpers_path = app.config.paths.app.helpers.to_a end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
actionpack-3.0.0.beta | lib/action_controller/railtie.rb |