On 12 Apr, 04:03, Nick <[email protected]> wrote: > On Apr 11, 6:26 pm, Frederick Cheung <[email protected]> > wrote: > > > If you want something to be reloadable you should use > > require_dependency to load it. The main thing though is that a > > plugin's init.rb is not re-run between requests, so the include you do > > on ApplicationController is lost after the first request. > > > Fred > > Right. So how can one get a module included in a controller on > subsequent requests without explicitly putting an #include in the > controller? > > To facilitate development (IE: not restart WEBrick between requests), > I have this at the moment: > class DashboardsController < ApplicationController > include ActsAsDashboard > acts_as_dashboard > > I'd like to figure out how to remove that #include . Any ideas?
I suppose you could define self.inherited on ActionController::Base and do your setup from there. Fred -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

