Sha256: fa47d9210b5f43196b87ffe0f86a0af764d5b0927f661664c346d41d9e8e41bd
Contents?: true
Size: 869 Bytes
Versions: 7
Compression:
Stored size: 869 Bytes
Contents
module WeBridgeRailsEngineUsers class Engine < ::Rails::Engine config.generators do |g| g.test_framework :rspec, fixture: false, view_specs: true, helper_specs: true, controller_specs: true, request_specs: true, route_specs: true, model_specs: true g.fixture_replacement :factory_girl, :dir => 'spec/factories' g.template_engine :builder g.assets true g.helper true g.stylesheets true g.javascripts true end initializer :append_migrations_and_seeds 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 config.paths["db/seeds.rb"].existent.each do |expanded_path| app.config.paths["db/seeds.rb"] << expanded_path end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems