Sha256: 12b9af576bf5c50e2922a8d75e7beb9e37a43a04987d8401db0a6d5c67ee738a
Contents?: true
Size: 333 Bytes
Versions: 9
Compression:
Stored size: 333 Bytes
Contents
module Beetstrap class Engine < ::Rails::Engine initializer 'beetstrap' do |app| %w(stylesheets fonts images javascripts).each do |sub| app.config.assets.paths << root.join('assets', sub).to_s end app.config.assets.precompile << %r(beetstrap\/.*\.(?:png|jpg|gif|eot|svg|ttf|woff)$) end end end
Version data entries
9 entries across 9 versions & 1 rubygems