Sha256: 30601c4b090d0863cc627ca447eaff3e0e64eee6bc65070a709838782dc73cb1

Contents?: true

Size: 634 Bytes

Versions: 1

Compression:

Stored size: 634 Bytes

Contents

module Blast
  module Contacts
    class Engine < ::Rails::Engine
      isolate_namespace Blast::Contacts
      paths["app/views"] << "app/views/blast/contacts"
    
      initializer :append_migrations do |app|
        unless app.root.to_s.match(root.to_s)
          config.paths["db/migrate"].expanded.each do |p|
            app.config.paths["db/migrate"] << p
          end
        end
      end
    
      config.to_prepare do
        Dir.glob(Engine.root.join("app", "decorators", "**", "*_decorator*.rb")) do |c|
          Rails.configuration.cache_classes ? require(c) : load(c)
        end
      end

    end
  
  end
end



Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
blast_contacts-0.0.1 lib/blast/contacts/engine.rb