I don't have an answer off the top of my head (and I'm running out the door so I can't dig into the code at the moment), but I can give you a tip on how to proceed.
script/install appears to be executing a bunch of rake tasks. Unfortunately, passing --trace to script/install won't trigger a backtrace showing in the individual rake tasks. so I would start by opening the install script and seeing the rake tasks, then running just one of them manually with --trace. (i.e. enter "rake some:task --track" where some:task is what gets run by the install script. Then you will actually get a backtrace which may help lead you to the problem. It is *possible* that rubygems 1.5.3 is actually too new for the gems used in Insoshi, but I'm not sure of that. I'll try to test it soon. Regards, Evan Evan Dorn, Ph.D. CEO and Lead Developer Logical Reality Design http://LRDesign.com On Feb 27, 2011, at 1:30 PM, Shirl Hart wrote: > I used the ruby installer 1.8.7-p334, rubygems 1.5.3 and rails 2.3.8 > and receive these error messages. I don't know how to proceed. Thanks > for any help. > > > C:\xampp\rails2_apps\insoshi>ruby script/install --trace > Creating empty files. Please ignore permissions error messages. > (in C:/xampp/rails2_apps/insoshi) > rake aborted! > undefined method `version_requirements' for #<Gem::Dependency: > 0x3ca1dd8> > > (See full trace by running task with --trace) > (in C:/xampp/rails2_apps/insoshi) > rake aborted! > undefined method `version_requirements' for #<Gem::Dependency: > 0x3c98508> > > (See full trace by running task with --trace) > (in C:/xampp/rails2_apps/insoshi) > rake aborted! > undefined method `version_requirements' for #<Gem::Dependency: > 0x3c98520> > > (See full trace by running task with --trace) > > -- > You received this message because you are subscribed to the Google Groups > "Insoshi" 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/insoshi?hl=en. > -- You received this message because you are subscribed to the Google Groups "Insoshi" 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/insoshi?hl=en.
