Sha256: f71f2bda32fbc59f019bd2d79aa91638811a84ed000e619512c2c8315dd32e45
Contents?: true
Size: 466 Bytes
Versions: 1
Compression:
Stored size: 466 Bytes
Contents
module MaterialDesignLite module Sass module Rails class Engine < ::Rails::Engine initializer 'material_design_lite-sass.assets.precompile' do |app| %w(stylesheets javascripts fonts).each do |sub| app.config.assets.paths << root.join('vendor/assets', sub).to_s end app.config.assets.precompile << %r(material-icons/MaterialIcons-Regular\.(?:eot|ttf|woff|woff2?)$) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
material_design_lite-sass-1.0.3.1 | lib/material_design_lite/sass/engine.rb |