> How do I configure my project which currently has gems installed for > rails to use source code so I can edit and debug it?
I assume you're debugging anyways: http://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-ruby-debug If you do that you can step out into the rails code to see what's happening. If you want to actually put debug lines into rails source code then how about freezing the rails gems into your project? Then you could edit them and step out at any point you like. Cheers Luke -- Posted via http://www.ruby-forum.com/. -- 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.

