Re: [Rails-core] Circular dependency issue in startup

2006-05-10 Thread Michael Koziarski
Not sure if rails-core is the best list to discuss this... Anyhow, I'll take a look at the code and see if I see the problem. It's probably not, but that's what config.after_initialize { } is for. -- Cheers Koz ___ Rails-core mailing list Rails-cor

Re: [Rails-core] Circular dependency issue in startup

2006-05-10 Thread Kyle Maxwell
On 5/9/06, Francois Beausoleil <[EMAIL PROTECTED]> wrote: Hi all ! I am adding observers to some model objects. One of these uses RailsCron. RailsCron adds a class method to ActiveRecord::Base. Unfortunately, during the initialization phase, plugins aren't yet loaded, so I can't setup my obser

[Rails-core] Circular dependency issue in startup

2006-05-09 Thread Francois Beausoleil
Hi all ! I am adding observers to some model objects. One of these uses RailsCron. RailsCron adds a class method to ActiveRecord::Base. Unfortunately, during the initialization phase, plugins aren't yet loaded, so I can't setup my observers in config/environment.rb, as suggested by the commen