Rails Engine - Modular Rails
suggest changeIntroduction
Quick overview of Rails engines
Engines are small Rails applications that can be used to add functionalities to the application hosting them. The class defining a Ruby on Rails application is Rails::Application which actually inherits a lot of its behavior from Rails::Engine, the class defining an engine. We can say that a regular Rails application is simply an engine with more features.
Syntax
- rails plugin new my_module –mountable
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents