Sha256: 2f0a79fe9ff9c1119776d67d25b6cf141c5e8f40232311ae9509fcd57cbf16bc
Contents?: true
Size: 400 Bytes
Versions: 2
Compression:
Stored size: 400 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) end app.config.assets.precompile << %r(bootstrap/glyphicons-halflings-regular\.(?:eot|svg|ttf|woff)$) end end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
bootstrap-sass-3.2.0.4 | lib/bootstrap-sass/engine.rb |
bootstrap-sass-backport-3.2.0.2 | lib/bootstrap-sass/engine.rb |