Sha256: 792afc0a2977994acd401a4f408419f876f643e060f3719e28da57013fe175fb
Contents?: true
Size: 895 Bytes
Versions: 11
Compression:
Stored size: 895 Bytes
Contents
module WeBridgeRailsEngineOrgs 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 config.autoload_paths << File.expand_path('../../../app/controllers/concerns', __FILE__) initializer :append_migrations_and_seeds do |app| 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
Version data entries
11 entries across 11 versions & 1 rubygems