Sha256: c8f7e3234655a1136bd1aaf598ad05ff13ef1e6ba7914d6525141bbc2a1450c5
Contents?: true
Size: 405 Bytes
Versions: 4
Compression:
Stored size: 405 Bytes
Contents
module Bootstrap module Rails class Engine < ::Rails::Engine initializer 'bootstrap-sass.assets.precompile' do |app| %w(stylesheets javascripts fonts images).each do |sub| app.config.assets.paths << root.join('assets', sub).to_s end app.config.assets.precompile << %r(bootstrap/glyphicons-halflings-regular\.(?:eot|svg|ttf|woff)$) end end end end
Version data entries
4 entries across 4 versions & 2 rubygems