Class: Rails::Engine
| Relationships & Source Files | |
| Namespace Children | |
| Classes: | |
| Extension / Inclusion / Inheritance Descendants | |
| Subclasses: 
          ActionCable::Engine, ActionMailbox::Engine, ActionText::Engine, ActionView::Railtie, ActiveStorage::Engine, Application
         | |
| Super Chains via Extension / Inclusion / Inheritance | |
| Class Chain: | |
| Instance Chain: | |
| Inherits: | Rails::Railtie 
 | 
| Defined in: | railties/lib/rails/engine.rb, railties/lib/rails/engine/configuration.rb, railties/lib/rails/engine/railties.rb, railties/lib/rails/engine/updater.rb | 
Overview
Engine allows you to wrap a specific Rails application or subset of functionality and share it with other applications or within a larger packaged application. Every Application is just an engine, which allows for simple feature and application sharing.
Any Engine is also a Railtie, so the same methods (like rake_tasks and generators) and configuration options that are available in railties can also be used in engines.
Creating an Engine
If you want a gem to behave as an engine, you have to specify an Engine for it somewhere inside your plugin’s lib folder (similar to how we specify a Railtie):
# lib/my_engine.rb
module MyEngine
  class Engine < Rails::Engine
  end
endThen ensure that this file is loaded at the top of your config/application.rb (or in your Gemfile), and it will automatically load models, controllers, and helpers inside #app, load routes at config/routes.rb, load locales at config/locales/*/, and load tasks at lib/tasks/*/.
Configuration
Like railties, engines can access a config object which contains configuration shared by all railties and the application. Additionally, each engine can access autoload_paths, eager_load_paths and autoload_once_paths settings which are scoped to that engine.
class MyEngine < Rails::Engine
  # Add a load path for this specific Engine
  config.autoload_paths << File.("lib/some/path", __dir__)
  initializer "my_engine.add_middleware" do |app|
    app.middleware.use MyEngine::Middleware
  end
endGenerators
You can set up generators for engines with config.generators method:
class MyEngine < Rails::Engine
  config.generators do |g|
    g.orm             :active_record
    g.template_engine :erb
    g.test_framework  :test_unit
  end
endYou can also set generators for an application by using config.app_generators:
class MyEngine < Rails::Engine
  # note that you can also pass block to app_generators in the same way you
  # can pass it to generators method
  config.app_generators.orm :datamapper
endPaths
Applications and engines have flexible path configuration, meaning that you are not required to place your controllers at app/controllers, but in any place which you find convenient.
For example, let’s suppose you want to place your controllers in lib/controllers. You can set that as an option:
class MyEngine < Rails::Engine
  paths["app/controllers"] = "lib/controllers"
endYou can also have your controllers loaded from both app/controllers and lib/controllers:
class MyEngine < Rails::Engine
  paths["app/controllers"] << "lib/controllers"
endThe available paths in an engine are:
class MyEngine < Rails::Engine
  paths["app"]                 # => ["app"]
  paths["app/controllers"]     # => ["app/controllers"]
  paths["app/helpers"]         # => ["app/helpers"]
  paths["app/models"]          # => ["app/models"]
  paths["app/views"]           # => ["app/views"]
  paths["lib"]                 # => ["lib"]
  paths["lib/tasks"]           # => ["lib/tasks"]
  paths["config"]              # => ["config"]
  paths["config/initializers"] # => ["config/initializers"]
  paths["config/locales"]      # => ["config/locales"]
  paths["config/routes.rb"]    # => ["config/routes.rb"]
endThe Application class adds a couple more paths to this set. And as in your Application, all folders under #app are automatically added to the load path. If you have an app/services folder for example, it will be added by default.
Endpoint
An engine can also be a Rack application. It can be useful if you have a Rack application that you would like to provide with some of the Engine‘s features.
To do that, use the .endpoint method:
module MyEngine
  class Engine < Rails::Engine
    endpoint MyRackApplication
  end
endNow you can mount your engine in application’s routes:
Rails.application.routes.draw do
  mount MyEngine::Engine => "/engine"
endMiddleware stack
As an engine can now be a Rack endpoint, it can also have a middleware stack. The usage is exactly the same as in Application:
module MyEngine
  class Engine < Rails::Engine
    middleware.use SomeMiddleware
  end
endRoutes
If you don’t specify an endpoint, routes will be used as the default endpoint. You can use them just like you use an application’s routes:
# ENGINE/config/routes.rb
MyEngine::Engine.routes.draw do
  get "/" => "posts#index"
endMount priority
Note that now there can be more than one router in your application, and it’s better to avoid passing requests through many routers. Consider this situation:
Rails.application.routes.draw do
  mount MyEngine::Engine => "/blog"
  get "/blog/omg" => "main#omg"
endMyEngine is mounted at /blog, and /blog/omg points to application’s controller. In such a situation, requests to /blog/omg will go through MyEngine, and if there is no such route in Engine‘s routes, it will be dispatched to main#omg. It’s much better to swap that:
Rails.application.routes.draw do
  get "/blog/omg" => "main#omg"
  mount MyEngine::Engine => "/blog"
endNow, Engine will get only requests that were not handled by Application.
Engine name
There are some places where an Engine’s name is used:
- 
routes: when you mount an Enginewithmount(MyEngine::Engine => '/my_engine'), it’s used as default:asoption
- 
rake task for installing migrations my_engine:install:migrations
Engine name is set by default based on class name. For MyEngine::Engine it will be my_engine_engine. You can change it manually using the .engine_name method:
module MyEngine
  class Engine < Rails::Engine
    engine_name "my_engine"
  end
endIsolated Engine
Normally when you create controllers, helpers, and models inside an engine, they are treated as if they were created inside the application itself. This means that all helpers and named routes from the application will be available to your engine’s controllers as well.
However, sometimes you want to isolate your engine from the application, especially if your engine has its own router. To do that, you simply need to call .isolate_namespace. This method requires you to pass a module where all your controllers, helpers, and models should be nested to:
module MyEngine
  class Engine < Rails::Engine
    isolate_namespace MyEngine
  end
endWith such an engine, everything that is inside the MyEngine module will be isolated from the application.
Consider this controller:
module MyEngine
  class FooController < ActionController::Base
  end
endIf the MyEngine engine is marked as isolated, FooController only has access to helpers from MyEngine, and url_helpers from MyEngine::Engine.routes.
The next thing that changes in isolated engines is the behavior of routes. Normally, when you namespace your controllers, you also need to namespace the related routes. With an isolated engine, the engine’s namespace is automatically applied, so you don’t need to specify it explicitly in your routes:
MyEngine::Engine.routes.draw do
  resources :articles
endIf MyEngine is isolated, the routes above will point to MyEngine::ArticlesController. You also don’t need to use longer URL helpers like my_engine_articles_path. Instead, you should simply use articles_path, like you would do with your main application.
To make this behavior consistent with other parts of the framework, isolated engines also have an effect on ::ActiveModel::Naming. In a normal Rails app, when you use a namespaced model such as Namespace::Article, ::ActiveModel::Naming will generate names with the prefix “namespace”. In an isolated engine, the prefix will be omitted in URL helpers and form fields, for convenience.
polymorphic_url(MyEngine::Article.new)
# => "articles_path" # not "my_engine_articles_path"
form_for(MyEngine::Article.new) do
  text_field :title # => <input type="text" name="article[title]" id="article_title" />
endAdditionally, an isolated engine will set its own name according to its namespace, so MyEngine::Engine.engine_name will return “my_engine”. It will also set MyEngine.table_name_prefix to “my_engine_”, meaning for example that MyEngine::Article will use the my_engine_articles database table by default.
Using Engine’s routes outside Engine
Since you can now mount an engine inside application’s routes, you do not have direct access to Engine‘s url_helpers inside Application. When you mount an engine in an application’s routes, a special helper is created to allow you to do that. Consider such a scenario:
# config/routes.rb
Rails.application.routes.draw do
  mount MyEngine::Engine => "/my_engine", as: "my_engine"
  get "/foo" => "foo#index"
endNow, you can use the my_engine helper inside your application:
class FooController < ApplicationController
  def index
    my_engine.root_url # => /my_engine/
  end
endThere is also a main_app helper that gives you access to application’s routes inside Engine:
module MyEngine
  class BarController
    def index
      main_app.foo_path # => /foo
    end
  end
endNote that the :as option given to mount takes the .engine_name as default, so most of the time you can simply omit it.
Finally, if you want to generate a URL to an engine’s route using polymorphic_url, you also need to pass the engine helper. Let’s say that you want to create a form pointing to one of the engine’s routes. All you need to do is pass the helper as the first element in array with attributes for URL:
form_for([my_engine, @user])This code will use my_engine.user_path(@user) to generate the proper route.
Isolated engine’s helpers
Sometimes you may want to isolate an engine, but use helpers that are defined for it. If you want to share just a few specific helpers you can add them to application’s helpers in ApplicationController:
class ApplicationController < ActionController::Base
  helper MyEngine::SharedEngineHelper
endIf you want to include all of the engine’s helpers, you can use the #helper method on an engine’s instance:
class ApplicationController < ActionController::Base
  helper MyEngine::Engine.helpers
endIt will include all of the helpers from engine’s directory. Take into account this does not include helpers defined in controllers with helper_method or other similar solutions, only helpers defined in the helpers directory will be included.
Migrations & seed data
Engines can have their own migrations. The default path for migrations is exactly the same as in application: db/migrate
To use engine’s migrations in application you can use the rake task below, which copies them to application’s dir:
$ rake ENGINE_NAME:install:migrationsNote that some of the migrations may be skipped if a migration with the same name already exists in application. In such a situation you must decide whether to leave that migration or rename the migration in the application and rerun copying migrations.
If your engine has migrations, you may also want to prepare data for the database in the db/seeds.rb file. You can load that data using the #load_seed method, e.g.
MyEngine::Engine.load_seedLoading priority
In order to change engine’s priority you can use config.railties_order in the main application. It will affect the priority of loading views, helpers, assets, and all the other files related to engine or application.
# load Blog::Engine with highest priority, followed by application and other railties
config.railties_order = [Blog::Engine, :main_app, :all]Constant Summary
::ActiveSupport::Callbacks - Attributes & Methods
- .__callbacks rw
- #__callbacks readonly
- .__callbacks? ⇒ Boolean rw
- #__callbacks? ⇒ Boolean readonly
Class Attribute Summary
Class Method Summary
- .endpoint(endpoint = nil)
- .engine_name
- 
    
      .find(path)  
    
    Finds engine with given path. 
- .find_root(from)
- .inherited(base)
- .isolate_namespace(mod)
- .isolated (also: .isolated?) rw
- .new ⇒ Engine constructor
Railtie - Inherited
| .configure | Allows you to configure the railtie. | 
| .console, .generators, .inherited, | |
| .instance | |
| .railtie_name, .rake_tasks, .runner, .server, .subclasses | |
::ActiveSupport::DescendantsTracker - Extended
Instance Attribute Summary
- #engine_name readonly
- #middleware readonly
- #paths readonly
- #root readonly
Railtie - Inherited
| #config | This is used to create the  | 
| #railtie_name | |
Instance Method Summary
- 
    
      #app  
      (also: #build_middleware_stack)
    
    Returns the underlying Rackapplication for this engine.
- 
    
      #call(env)  
    
    Define the RackAPI for this engine.
- 
    
      #config  
    
    Define the configuration object for the engine. 
- #eager_load!
- 
    
      #endpoint  
    
    Returns the endpoint for this engine. 
- 
    
      #env_config  
    
    Defines additional Rackenv configuration that is added on each call.
- 
    
      #helpers  
    
    Returns a module with all the helpers defined for the engine. 
- 
    
      #helpers_paths  
    
    Returns all registered helpers paths. 
- #isolated? ⇒ Boolean
- 
    
      #load_console(app = self)  
    
    Load console and invoke the registered hooks. 
- 
    
      #load_generators(app = self)  
    
    Load Rails generators and invoke the registered hooks. 
- 
    
      #load_runner(app = self)  
    
    Load Rails runner and invoke the registered hooks. 
- 
    
      #load_seed  
    
    Load data from db/seeds.rb file. 
- 
    
      #load_server(app = self)  
    
    Invoke the server registered hooks. 
- 
    
      #load_tasks(app = self)  
    
    Load Rake and railties tasks, and invoke the registered hooks. 
- #railties
- 
    
      #routes(&block)  
    
    readonly
    Defines the routes for this engine. 
- #load_config_initializer(initializer) private
::ActiveSupport::Callbacks - Included
| #run_callbacks | Runs the callbacks for the given event. | 
Initializable - Included
Constructor Details
    .new  ⇒ Engine 
  
# File 'railties/lib/rails/engine.rb', line 439
def initialize @_all_autoload_paths = nil @_all_load_paths = nil @app = nil @config = nil @env_config = nil @helpers = nil @routes = nil @app_build_lock = Mutex.new super end
Class Attribute Details
.__callbacks (rw)
[ GitHub ]# File 'activesupport/lib/active_support/callbacks.rb', line 70
class_attribute :__callbacks, instance_writer: false, default: {}
    .__callbacks?  ⇒ Boolean  (rw)
  
  [ GitHub ]
# File 'activesupport/lib/active_support/callbacks.rb', line 70
class_attribute :__callbacks, instance_writer: false, default: {}
.called_from (rw)
[ GitHub ]# File 'railties/lib/rails/engine.rb', line 354
attr_accessor :called_from, :isolated
.isolated? (rw)
Alias for .isolated.
# File 'railties/lib/rails/engine.rb', line 356
alias :isolated? :isolated
Class Method Details
.endpoint(endpoint = nil)
[ GitHub ]# File 'railties/lib/rails/engine.rb', line 379
def endpoint(endpoint = nil) @endpoint ||= nil @endpoint = endpoint if endpoint @endpoint end
.engine_name
[ GitHub ]# File 'railties/lib/rails/engine.rb', line 357
alias :engine_name :railtie_name
.find(path)
Finds engine with given path.
# File 'railties/lib/rails/engine.rb', line 423
def find(path) = File. path Rails::Engine.subclasses.each do |klass| engine = klass.instance return engine if File.(engine.root) == end nil end
.find_root(from)
[ GitHub ]# File 'railties/lib/rails/engine.rb', line 375
def find_root(from) find_root_with_flag "lib", from end
.inherited(base)
[ GitHub ]# File 'railties/lib/rails/engine.rb', line 361
def inherited(base) unless base.abstract_railtie? Rails::Railtie::Configuration.eager_load_namespaces << base base.called_from = begin call_stack = caller_locations.map { |l| l.absolute_path || l.path } File.dirname(call_stack.detect { |p| !p.match?(%r[railties[\w.-]*/lib/rails|rack[\w.-]*/lib/rack]) }) end end super end
.isolate_namespace(mod)
[ GitHub ]# File 'railties/lib/rails/engine.rb', line 385
def isolate_namespace(mod) engine_name(generate_railtie_name(mod.name)) routes.default_scope = { module: ActiveSupport::Inflector.underscore(mod.name) } self.isolated = true unless mod.respond_to?(:railtie_namespace) name, railtie = engine_name, self mod.singleton_class.instance_eval do define_method(:railtie_namespace) { railtie } unless mod.respond_to?(:table_name_prefix) define_method(:table_name_prefix) { "#{name}_" } ActiveSupport.on_load(:active_record) do mod.singleton_class.redefine_method(:table_name_prefix) do "#{ActiveRecord::Base.table_name_prefix}#{name}_" end end end unless mod.respond_to?(:use_relative_model_naming?) class_eval "def use_relative_model_naming?; true; end", __FILE__, __LINE__ end unless mod.respond_to?(:railtie_helpers_paths) define_method(:railtie_helpers_paths) { railtie.helpers_paths } end unless mod.respond_to?(:railtie_routes_url_helpers) define_method(:railtie_routes_url_helpers) { |include_path_helpers = true| railtie.routes.url_helpers(include_path_helpers) } end end end end
.isolated (rw) Also known as: .isolated?
[ GitHub ]# File 'railties/lib/rails/engine.rb', line 354
attr_accessor :called_from, :isolated
Instance Attribute Details
#__callbacks (readonly)
[ GitHub ]# File 'activesupport/lib/active_support/callbacks.rb', line 70
class_attribute :__callbacks, instance_writer: false, default: {}
    #__callbacks?  ⇒ Boolean  (readonly)
  
  [ GitHub ]
# File 'activesupport/lib/active_support/callbacks.rb', line 70
class_attribute :__callbacks, instance_writer: false, default: {}
#engine_name (readonly)
[ GitHub ]# File 'railties/lib/rails/engine.rb', line 437
delegate :engine_name, :isolated?, to: :class
#middleware (readonly)
[ GitHub ]#paths (readonly)
[ GitHub ]# File 'railties/lib/rails/engine.rb', line 436
delegate :middleware, :root, :paths, to: :config
#root (readonly)
[ GitHub ]# File 'railties/lib/rails/engine.rb', line 436
delegate :middleware, :root, :paths, to: :config
Instance Method Details
#app Also known as: #build_middleware_stack
Returns the underlying Rack application for this engine.
# File 'railties/lib/rails/engine.rb', line 516
def app @app || @app_build_lock.synchronize { @app ||= begin stack = default_middleware_stack config.middleware = build_middleware.merge_into(stack) config.middleware.build(endpoint) end } end
#call(env)
Define the Rack API for this engine.
#config
Define the configuration object for the engine.
# File 'railties/lib/rails/engine.rb', line 552
def config @config ||= Engine::Configuration.new(self.class.find_root(self.class.called_from)) end
#eager_load!
[ GitHub ]# File 'railties/lib/rails/engine.rb', line 490
delegate :eager_load!, to: :instance
#endpoint
Returns the endpoint for this engine. If none is registered, defaults to an ::ActionDispatch::Routing::RouteSet.
# File 'railties/lib/rails/engine.rb', line 528
def endpoint self.class.endpoint || routes end
#env_config
Defines additional Rack env configuration that is added on each call.
# File 'railties/lib/rails/engine.rb', line 539
def env_config @env_config ||= {} end
#helpers
Returns a module with all the helpers defined for the engine.
# File 'railties/lib/rails/engine.rb', line 500
def helpers @helpers ||= begin helpers = Module.new AbstractController::Helpers.helper_modules_from_paths(helpers_paths).each do |mod| helpers.include(mod) end helpers end end
#helpers_paths
Returns all registered helpers paths.
# File 'railties/lib/rails/engine.rb', line 511
def helpers_paths paths["app/helpers"].existent end
    #isolated?  ⇒ Boolean 
  
# File 'railties/lib/rails/engine.rb', line 437
delegate :engine_name, :isolated?, to: :class
#load_config_initializer(initializer) (private)
[ GitHub ]# File 'railties/lib/rails/engine.rb', line 687
def load_config_initializer(initializer) # :doc: ActiveSupport::Notifications.instrument("load_config_initializer.railties", initializer: initializer) do load(initializer) end end
#load_console(app = self)
Load console and invoke the registered hooks. Check Railtie.console for more info.
#load_generators(app = self)
Load Rails generators and invoke the registered hooks. Check Railtie.generators for more info.
# File 'railties/lib/rails/engine.rb', line 476
def load_generators(app = self) require "rails/generators" run_generators_blocks(app) Rails::Generators.configure!(app.config.generators) self end
#load_runner(app = self)
Load Rails runner and invoke the registered hooks. Check Railtie.runner for more info.
#load_seed
Load data from db/seeds.rb file. It can be used in to load engines’ seeds, e.g.:
Blog::Engine.load_seed
# File 'railties/lib/rails/engine.rb', line 560
def load_seed seed_file = paths["db/seeds.rb"].existent.first run_callbacks(:load_seed) { load(seed_file) } if seed_file end
#load_server(app = self)
Invoke the server registered hooks. Check Railtie.server for more info.
#load_tasks(app = self)
Load Rake and railties tasks, and invoke the registered hooks. Check Railtie.rake_tasks for more info.
#railties
[ GitHub ]#routes(&block) (readonly)
Defines the routes for this engine. If a block is given to routes, it is appended to the engine.
# File 'railties/lib/rails/engine.rb', line 545
def routes(&block) @routes ||= ActionDispatch::Routing::RouteSet.new_with_config(config) @routes.append(&block) if block_given? @routes end