Sha256: 2274de07d4bf771f87c96279889ffd7d40e0d2e95fc2e63bd04fc6db631b25c6

Contents?: true

Size: 473 Bytes

Versions: 72

Compression:

Stored size: 473 Bytes

Contents

require "bourbon"
require "bootstrap-sass"

module MagicStylez
  module Rails
    class Engine < ::Rails::Engine
      initializer "magic-stylez.assets.precompile" do |app|
        
        # compile pictures (this way also from vendor)
        app.config.assets.precompile += %w(*.png *.jpg *.jpeg *.gif)
        
        # compile fonts (this way also from vendor)
        app.config.assets.precompile += %w(*.eot *.svg *.ttf *.woff)
        
      end
    end
  end
end

Version data entries

72 entries across 72 versions & 1 rubygems

Version Path
magic_stylez-0.0.0.40 lib/magic_stylez/engine.rb
magic_stylez-0.0.0.39 lib/magic_stylez/engine.rb
magic_stylez-0.0.0.38 lib/magic_stylez/engine.rb
magic_stylez-0.0.0.37 lib/magic_stylez/engine.rb
magic_stylez-0.0.0.36 lib/magic_stylez/engine.rb
magic_stylez-0.0.0.35 lib/magic_stylez/engine.rb
magic_stylez-0.0.0.34 lib/magic_stylez/engine.rb
magic_stylez-0.0.0.33 lib/magic_stylez/engine.rb
magic_stylez-0.0.0.32 lib/magic_stylez/engine.rb
magic_stylez-0.0.0.31 lib/magic_stylez/engine.rb
magic_stylez-0.0.0.30 lib/magic_stylez/engine.rb
magic_stylez-0.0.0.29 lib/magic_stylez/engine.rb