Sha256: 2c459236ef0f77d9100367ab4fbfc8799f1dc49e1153beab8ba2b27382888890

Contents?: true

Size: 776 Bytes

Versions: 40

Compression:

Stored size: 776 Bytes

Contents

module C80Estate
  class Engine < ::Rails::Engine
    isolate_namespace C80Estate

    initializer :c80_estate_engine do
      if defined?(ActiveAdmin)
        ActiveAdmin.application.load_paths += Dir["#{config.root}/app/models/**/"]
        #ActiveAdmin.application.load_paths += Dir["#{config.root}/app/models/concerns/**/"]
        ActiveAdmin.application.load_paths += Dir["#{config.root}/app/admin/c80_estate/**/"]
        # ActiveAdmin.application.load_paths += Dir["#{config.root}/app/jobs/**/"]
      end
    end

    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

40 entries across 40 versions & 1 rubygems

Version Path
c80_estate-0.1.0.19 lib/c80_estate/engine.rb
c80_estate-0.1.0.18 lib/c80_estate/engine.rb
c80_estate-0.1.0.17 lib/c80_estate/engine.rb
c80_estate-0.1.0.16 lib/c80_estate/engine.rb
c80_estate-0.1.0.15 lib/c80_estate/engine.rb
c80_estate-0.1.0.14 lib/c80_estate/engine.rb
c80_estate-0.1.0.13 lib/c80_estate/engine.rb
c80_estate-0.1.0.12 lib/c80_estate/engine.rb
c80_estate-0.1.0.11 lib/c80_estate/engine.rb
c80_estate-0.1.0.10 lib/c80_estate/engine.rb
c80_estate-0.1.0.9 lib/c80_estate/engine.rb
c80_estate-0.1.0.8 lib/c80_estate/engine.rb
c80_estate-0.1.0.7 lib/c80_estate/engine.rb
c80_estate-0.1.0.6 lib/c80_estate/engine.rb
c80_estate-0.1.0.5 lib/c80_estate/engine.rb
c80_estate-0.1.0.4 lib/c80_estate/engine.rb
c80_estate-0.1.0.3 lib/c80_estate/engine.rb
c80_estate-0.1.0.2 lib/c80_estate/engine.rb
c80_estate-0.1.0.1 lib/c80_estate/engine.rb
c80_estate-0.1.0 lib/c80_estate/engine.rb