module Sis module Core class Engine < ::Rails::Engine isolate_namespace Sis::Core config.generators.api_only = true config.eager_load_paths << Sis::Core::Engine.root.join('lib') config.autoload_paths << Sis::Core::Engine.root.join('lib') config.generators do |g| g.test_framework :rspec g.fixture_replacement :factory_bot g.factory_bot dir: 'spec/factories' end initializer 'sis_core.factories', after: 'factory_bot.set_factory_paths' do FactoryBot.definition_file_paths << File.expand_path('../../../spec/factories', __dir__) if defined?(FactoryBot) end initializer :append_migrations do |app| unless app.root.to_s.match(root.to_s + File::SEPARATOR) app.config.paths['db/migrate'].concat(config.paths['db/migrate'].expanded) end end end end end