Sha256: 99dfb593a0923c41c93fcadfb2842db6156d2156dd994f3303a0e219f80d2b1c
Contents?: true
Size: 569 Bytes
Versions: 21
Compression:
Stored size: 569 Bytes
Contents
module Flexite class Engine < ::Rails::Engine isolate_namespace Flexite config.before_configuration do |app| app.config.assets.precompile << /\.(?:svg|eot|woff|ttf)\z/ app.config.assets.paths << File.join(root, 'app', 'assets', 'fonts') end initializer 'flexite.append_migrations' do |app| paths['db/migrate'].expanded.each do |migration| app.paths['db/migrate'] << migration end end config.action_controller.include_all_helpers = false config.paths.add 'app/models/concerns', eager_load: true end end
Version data entries
21 entries across 21 versions & 1 rubygems