1
0
Fork 0
mirror of https://github.com/twbs/bootstrap-sass.git synced 2022-11-09 12:27:02 -05:00
twbs--bootstrap-sass/lib/bootstrap-sass/engine.rb
2013-08-22 10:36:09 +02:00

9 lines
263 B
Ruby

module Bootstrap
module Rails
class Engine < ::Rails::Engine
initializer "bootstrap-sass.assets.precompile" do |app|
app.config.assets.precompile << %r(bootstrap/glyphicons-halflings-regular\.(?:eot|svg|ttf|woff)$)
end
end
end
end