Skip to content

Instantly share code, notes, and snippets.

@costis
Created January 4, 2013 14:10
Show Gist options
  • Select an option

  • Save costis/4452821 to your computer and use it in GitHub Desktop.

Select an option

Save costis/4452821 to your computer and use it in GitHub Desktop.
Ctags creation for Ruby projects
# Scan all installed gems - very slow
ctags --extra=+f --exclude=.git --exclude=log -R * gem environment gemdir/gems/*
# Scan only gems from current Gemfile
bundle list --paths=true | xargs ctags --extra=+f --exclude=.git --exclude=log -R *
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment