On 2/27/07, Tekin Suleyman <[EMAIL PROTECTED]> wrote: > It appears to me like init.rb is only getting run once during start-up.
This is definitely the case, and is typically why you don't mix modules from plugins into *anything* that will get reloaded. For example, if you're adding methods to all controllers, you should include your module into ActionController::Base, not ApplicationController. The same applies for the rest of your application... -- * J * ~ _______________________________________________ engine-users mailing list [email protected] http://lists.rails-engines.org/listinfo.cgi/engine-users-rails-engines.org
