On 1/24/07, ben wiseley <[EMAIL PROTECTED]> wrote: > Are there any suggestions for layering engines so they'd act as a sort of > base-engine? Something like this:
There's no reason why you can't do this, if you're careful and design your code sensibly. The key would be to ensure that your 'base' is loaded before any plugins, etc, that might override or customise it. With 1.1.6 of the engines plugin, this would be done by ordering in the Engines.start method: Engines.start :core, :client, :custom With the upcoming 1.2 release, you control load order via the config.plugin array. -- * J * ~ _______________________________________________ engine-developers mailing list [email protected] http://lists.rails-engines.org/listinfo.cgi/engine-developers-rails-engines.org
