Sha256: e2d90862f8524df8816b5a3d1312a6cd3105e24050926531d8f98317608b9a20
Contents?: true
Size: 415 Bytes
Versions: 14
Compression:
Stored size: 415 Bytes
Contents
module Mautic class Engine < ::Rails::Engine isolate_namespace Mautic config.generators do |g| g.test_framework :rspec, fixture: false end 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 end end
Version data entries
14 entries across 14 versions & 1 rubygems