Sha256: e735f1a51d13101b68739bf41ef2bf6c4614e094b323b7c000442ed7e7be6e1d
Contents?: true
Size: 507 Bytes
Versions: 11
Compression:
Stored size: 507 Bytes
Contents
module Mks module Auth class Engine < ::Rails::Engine isolate_namespace Mks::Auth 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 config.generators do |g| g.test_framework :rspec, fixture: false g.assets false g.helper false end end end end
Version data entries
11 entries across 11 versions & 1 rubygems