Thanks to Tekin for his patches.
Updated migrations system to tie in more closely with the current rails mechanism.
Rake task for updating database schema info
rake db:migrate:upgrade_plugin_migrations
Please see http://engines.lighthouseapp.com/projects/10178-engines-plugin/tickets/17 for more information.
# Ensure that the code mixing and view loading from the application is disabled Engines.disable_app_views_loading = true Engines.disable_app_code_mixing = true
which will prevent code mixing for controllers and helpers, and loading views from the application. One thing to remember is to load any controllers/helpers using ‘require_or_load’ in your tests, to ensure that the engine behaviour is respected (Ticket 135)