I ran the following from my top level Ruby on Rails directory.
find . -name "*.rb" | etags -
Then within Emacs I visited that tag file. This works reasonably well to find some of the methods and most of the files, however it is having trouble finding some of the extra methods/classes that I use in my helpers directory.
For example, I have a file in my helpers directory called my_foo_helper.rb If I search my tags for that file, it finds it. However, if I try to find a tag for one of the methods within that module it doesn't find it at all.
If I use Aptana or something like that it seems to be able to locate those methods.
How can I resolve this problem?