Sha256: 449d125f5fde9e07283306fd7d87d76d7271deca31601a07564280de9c3a6068
Contents?: true
Size: 447 Bytes
Versions: 14
Compression:
Stored size: 447 Bytes
Contents
module Mautic class Engine < ::Rails::Engine isolate_namespace Mautic config.generators do |g| g.test_framework :rspec, fixture: false end # :nocov: initializer :append_migrations do |app| unless app.root.to_s.match root.to_s config.paths['db/migrate'].expanded.each do |expanded_path| app.config.paths['db/migrate'] << expanded_path end end end # :nocov: end end
Version data entries
14 entries across 14 versions & 1 rubygems