creating TAGS for Ruby and emacs
- by hortitude
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.
e.g. I have a file in my…