module Bootstrap module Rails class Engine < ::Rails::Engine initializer 'bootstrap.assets.precompile' do |app| %w(stylesheets javascripts).each do |sub| app.config.assets.paths << root.join('assets', sub).to_s end end end end end