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.