Sha256: 37a8b209937377c56cb60c203dac2df6bc6753f0d2cbb30059cda9f7f03263d8

Contents?: true

Size: 454 Bytes

Versions: 8

Compression:

Stored size: 454 Bytes

Contents

# frozen_string_literal: true

require 'devise'
require 'devise_invitable'
require 'eac_active_scaffold'

module EacUsersSupport
  class Engine < ::Rails::Engine
    isolate_namespace EacUsersSupport

    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
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
eac_users_support-0.11.1 lib/eac_users_support/engine.rb
eac_users_support-0.11.0 lib/eac_users_support/engine.rb
eac_users_support-0.10.1 lib/eac_users_support/engine.rb
eac_users_support-0.10.0 lib/eac_users_support/engine.rb
eac_users_support-0.9.8 lib/eac_users_support/engine.rb
eac_users_support-0.9.7 lib/eac_users_support/engine.rb
eac_users_support-0.9.6 lib/eac_users_support/engine.rb
eac_users_support-0.9.5 lib/eac_users_support/engine.rb