Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hey guys I'm new to rails, I read something about reading source code is good way to study rails, and I found the related rb file in rails' online document, such as this page But I can't find where the rails source file locate in my mac, could someone to help me out?

share|improve this question

1 Answer

up vote 5 down vote accepted

Easiest way is to look online at the github repo

If you want to browse it locally, you can (depending on your version of rails) to a bundle show rails for Rails 3.0, this will tell you where it's installed.

For rails 2.3.x you just need to find out where the gem is installed and open that up. If you're using RVM for instance it will be somewhere in ~/.rvm

share|improve this answer
1  
You could also just clone the Github repository instead of digging up the installed gem version. – Jimmy Cuadra Dec 1 '10 at 6:02
ya good call... – brad Dec 1 '10 at 17:27
Thanks Jimmy, it remind me Rails is host at github – yozloy Dec 18 '10 at 7:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.