mirror of
https://github.com/twbs/bootstrap-sass.git
synced 2022-11-09 12:27:02 -05:00
9 lines
263 B
Ruby
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
|