Bob Nadler, Jr. Bob Nadler, Jr.

Find Method Usages with ctags and vim

Published about 11 years ago less than 1 min read

I always forget how to set up ctags for a Ruby/Rails app so that I get tags for not only the project, but also any gems specified in my Gemfile. From the project root do:

ctags -R `bundle show rails`/../* .

Share This Article