houston/houston-core

View on GitHub
templates/new-module/lib/houston/%name%/engine.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "houston/<%= name %>/railtie"

module Houston
  module <%= camelized %>
    class Engine < ::Rails::Engine
      isolate_namespace Houston::<%= camelized %>

      # Precompile this modules assets
      initializer :assets do |config|
        Rails.application.config.assets.precompile += %w(
          houston/<%= name %>/application.js
          houston/<%= name %>/application.css )
      end

      # Include the Engine's migrations with the Application
      # http://pivotallabs.com/leave-your-migrations-in-your-rails-engines/
      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
end