Sha256: 1016cbc58c54bd565f3390ddde2a9d37c57904b9383e33396ec57913844348b0
Contents?: true
Size: 399 Bytes
Versions: 5
Compression:
Stored size: 399 Bytes
Contents
module FontAwesome module Sass module Rails class Engine < ::Rails::Engine initializer 'font-awesome-sass.assets.precompile' do |app| %w(stylesheets fonts).each do |sub| app.config.assets.paths << root.join('assets', sub).to_s end app.config.assets.precompile << /\.(?:svg|eot|woff|woff2|ttf)\z/ end end end end end
Version data entries
5 entries across 5 versions & 2 rubygems