vote up 1 vote down star
1

I am new to ruby development. Up until this point, I've done only small project that easily fit in one's head (and in one or two files). Now, I've got a big project (it's a GUI for a database task scheduler) that I need to make changes to. There are many files (879 to be precise) and I need a better way to get to know what's where.

So what is a good way to search for all other instances of a particular variable or function? Specifically, is there a tool that can help me quickly jump from one file to another, finding where @logs (for example) is being accessed?

My work computer is a Mac, which so far I like, but I'm still learning what tools are out there for it.

flag

1 Answer

vote up 1 vote down check

Start in the app/controllers ... its not technically where execution starts, but for a beginner its a good start. Check out Ryan Bates videos and/or buy Agile Web Development with Rails

all rails apps have the same directory structure, so by learning the app you will learn rails. get Notepad++(free) or TextMate. make sure to get Explorer plugin for Notepad++ so you can see your entire app in the editor.

you can also examine config/routes.rb for interesting url-to-action links

link|flag
Yeah, I've been randomly poking around in those folders, but using just VIM and bash, finding what I'm looking for is hard. I will check out those videos. – David Oneill Oct 16 at 21:48
make sure to get Explorer plugin for Notepad++ so you can see your entire app in the editor. – avguchenko Oct 16 at 21:54
1  
If you are a vim user, the defacto is to use the awesome rails.vim: vim.org/scripts/script.php?script_id=1567/…. No need to switch editor: vim is what I use, and very popular among Rails developers. – hgimenez Oct 17 at 0:54
@avguchenko: Is there a way I can get notepad++ running on my Mac? – David Oneill Oct 19 at 16:28
if you're on MacOS you should get TextMate. it costs money, but very well worth it. – avguchenko Oct 19 at 16:49
show 1 more comment

Your Answer

Get an OpenID
or

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