Ah ha. It's webrick. As a result of trying to debug a different problem, I switched to unicorn as the web server. The problem went away. Tried it on this problem, and webrick crashes, while unicorn runs.
So, newbie tutorial suggestion? Change the Gemfile and server start instructions to use 'unicorn'. In the Gemfile, add the line: gem 'unicorn', :group => :development run 'bundle install' then instead of 'rails s', run 'unicorn', which defaults to 127.0.0.1:8080 in a development environment. Now off to see if this fixes some of the other problems I've run into. Thanks for all the pointers! On Jan 17, 5:26 pm, JezC <[email protected]> wrote: > Nested Accessible Model App that crashes for > me...https://github.com/JezC/Hobo-Nested-Accessible-Models > > Not sure what to post here to make it easier than a "pull me now" > git :) > > Thanks, JeremyC. > > On Jan 17, 2:01 pm, Bob Sleys <[email protected]> wrote: > > > > > > > > > I don't know what the problem is but I can see it's possible to have many > > levels of nested models with , :dependent => :destroy, , :accessible => > > true. I have a fairly complex setup myself going 7 levels deep with one > > many-to-many mixed in and a few other wrinkles I it's all working fine. > > Not that I didn't have my own share of bumps and cry's for help along the > > way. > > > Perhaps you could try to isolate the error down to a couple of > > simple models that demonstrates the problem and post them here. > > > Bob -- You received this message because you are subscribed to the Google Groups "Hobo Users" 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/hobousers?hl=en.
