Sha256: 7c141eb5de61d94a29f108b9b12065921bc6ea9d2cf5d70259ac31f92d487ac0
Contents?: true
Size: 586 Bytes
Versions: 11
Compression:
Stored size: 586 Bytes
Contents
module Blocky class Engine < ::Rails::Engine isolate_namespace Blocky # Precompile Blocky Assets initializer "blocky.assets.precompile" do |app| app.config.assets.precompile += %w( blocky/application.css blocky/application.js blocky/fontawesome-webfont.eot blocky/fontawesome-webfont.svg blocky/fontawesome-webfont.ttf blocky/fontawesome-webfont.woff ) end # Load Rails Generators generators do require File.join(File.expand_path("../..", __FILE__), "generators", "blocky", "install_generator.rb") end end end
Version data entries
11 entries across 11 versions & 1 rubygems