mixable_engines

In the old Engines plugin (used before the built-in engines arrived in rails 2.3), controller and helper classes were mixed together. That is, if an engine had a FooController, and your application also had a FooController, you could use the actions in both controllers. In the built-in Engines functionality in Rails 3, this does not occur. Your application’s FooController replaces the engine controller entirely.

This gem restores the old functionality, allowing you to easily override parts of an engine in your application.

The code is based on some snippets posted on Stack Overflow. See these links for some discussion of the problem: stackoverflow.com/questions/5045068/extending-controllers-of-a-rails-3-engine-in-the-main-app stackoverflow.com/questions/2964050/rails-engines-extending-functionality

Contributing to mixable_engines

Copyright © 2011 ASEE and Andrius. See LICENSE.txt for further details.