Sha256: 104b4a5d47f870ec013b4b120fccbb184e05ef2d91cde9f4b4c6af1c23326812
Contents?: true
Size: 444 Bytes
Versions: 5
Compression:
Stored size: 444 Bytes
Contents
module ConversationForms module Rails class Engine < ::Rails::Engine initializer 'conversation_forms.assets.precompile' do |app| %w(stylesheets javascripts).each do |sub| app.config.assets.paths << root.join('assets', sub).to_s end # sprockets-rails 3 tracks down the calls to `font_path` and `image_path` # and automatically precompiles the referenced assets. end end end end
Version data entries
5 entries across 5 versions & 1 rubygems