Sha256: 08247c05e8b7c7291b3347959009f59797de93f938a9c049328a44d2a1963abb
Contents?: true
Size: 576 Bytes
Versions: 7
Compression:
Stored size: 576 Bytes
Contents
require 'notee/helper' require 'notee/view_helper' module Notee class Engine < ::Rails::Engine isolate_namespace Notee initializer 'notee.assets.precompile' do |app| app.config.assets.precompile += %w(*.js *.css) end initializer 'notee.action_controller_helpers' do ActiveSupport.on_load :action_controller do include Notee::Helper end end initializer 'notee.action_view_helpers' do ActiveSupport.on_load :action_view do include Notee::Helper include Notee::ViewHelper end end end end
Version data entries
7 entries across 7 versions & 1 rubygems