Sha256: b0fe56f8d70bdfeb586f0fa7584810a1d0c742dcaab75e3cbb84d3fc9dc22dad
Contents?: true
Size: 1.07 KB
Versions: 2
Compression:
Stored size: 1.07 KB
Contents
module EffectiveRegions class Engine < ::Rails::Engine engine_name 'effective_regions' config.autoload_paths += Dir["#{config.root}/app/models/concerns"] # Include Helpers to base application initializer 'effective_regions.action_controller' do |app| ActiveSupport.on_load :action_controller do ActionController::Base.send(:include, ::EffectiveRegionsControllerHelper) end end # Include acts_as_addressable concern and allow any ActiveRecord object to call it initializer 'effective_regions.active_record' do |app| ActiveSupport.on_load :active_record do ActiveRecord::Base.extend(ActsAsRegionable::Base) end end # Set up our default configuration options. initializer "effective_regions.defaults", :before => :load_config_initializers do |app| eval File.read("#{config.root}/config/effective_regions.rb") end initializer "effective_regions.append_precompiled_assets" do |app| Rails.application.config.assets.precompile += ['ck_assets.js', 'ck_assets.css', 'drop_cap.css'] end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
effective_regions-1.9.0 | lib/effective_regions/engine.rb |
effective_regions-1.8.6 | lib/effective_regions/engine.rb |