Sha256: 7ab346d665878f812d5bcb620ebd3ecb8c353a4ca1092a468b882c85b0044b99
Contents?: true
Size: 749 Bytes
Versions: 1
Compression:
Stored size: 749 Bytes
Contents
module Ecom module Model class Engine < ::Rails::Engine isolate_namespace Ecom::Model config.generators.api_only = true config.generators do |g| g.test_framework :rspec g.fixture_replacement :factory_bot g.factory_bot dir: 'spec/factories' end initializer 'ecom_model.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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ecom_model-2.0.1 | lib/ecom/model/engine.rb |