Sha256: 1963a2aaaf083ed59ea75b2ca316b65e34c081d3bbc3b747e591a573a90503f4
Contents?: true
Size: 593 Bytes
Versions: 14
Compression:
Stored size: 593 Bytes
Contents
module Bootstrap module BookingSync module Rails class Engine < ::Rails::Engine require 'bootstrap-sass' initializer 'bootstrap-bookingsync-sass.assets.precompile' do |app| %w(stylesheets javascripts fonts images).each do |sub| app.config.assets.paths << root.join('assets', sub).to_s end app.config.assets.precompile << %r(bookingsync/bookingsync-smiles\.(?:eot|svg|ttf|woff2?)$) app.config.assets.precompile << %r(bookingsync/bookingsync-icons\.(?:eot|svg|ttf|woff2?)$) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems