Sha256: ea7ebc958e77b9fc9ec371fc9afeedbc345a6f8e94fc6f70aa69b042f7103d07
Contents?: true
Size: 505 Bytes
Versions: 1
Compression:
Stored size: 505 Bytes
Contents
require "bourbon" require "bootstrap-sass" require 'bootstrap-sass/sass_functions' module MagicStylez module Rails class Engine < ::Rails::Engine initializer "magic-stylez.assets.precompile" do |app| # compile pictures (this way also from vendor) config.assets.precompile += %w(*.png *.jpg *.jpeg *.gif) # compile fonts (this way also from vendor) config.assets.precompile += %w(*.eot *.svg *.ttf *.woff) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
magic_stylez-0.0.0.20 | lib/magic_stylez/engine.rb |