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

Version Path
mks_auth-1.0.14 lib/mks/auth/engine.rb
mks_auth-1.0.13 lib/mks/auth/engine.rb
mks_auth-1.0.12 lib/mks/auth/engine.rb
mks_auth-1.0.11 lib/mks/auth/engine.rb
mks_auth-1.0.10 lib/mks/auth/engine.rb
mks_auth-1.0.9 lib/mks/auth/engine.rb
mks_auth-1.0.8 lib/mks/auth/engine.rb
mks_auth-1.0.7 lib/mks/auth/engine.rb
mks_auth-1.0.6 lib/mks/auth/engine.rb
mks_auth-1.0.5 lib/mks/auth/engine.rb
mks_auth-1.0.4 lib/mks/auth/engine.rb