Skip to content

Instantly share code, notes, and snippets.

@AndrewRadev
Created March 29, 2011 20:47
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save AndrewRadev/893236 to your computer and use it in GitHub Desktop.
Save AndrewRadev/893236 to your computer and use it in GitHub Desktop.
#! /usr/bin/env ruby
# Generate all tags for all gems included by bundler in gems.tags
#
# Basically does the same as "bundle show gemname", except for all gems.
# Interestingly enough, "bundle show" without any arguments falls back to
# "bundle list", otherwise the whole thing could have been a bash one-liner.
require 'bundler'
paths = Bundler.load.specs.map(&:full_gem_path)
system("ctags -R -f gems.tags #{paths.join(' ')}")
@wraithgar
Copy link

Bundle show lists paths with the --paths parameter, so:

ctags -R -f gems.tags bundle show --paths

There's your one liner

@wikimatze
Copy link

Hi @wraothgar,

thanks for your one liner addition. It worked for me as soon as I placed backticks arounf the bundle show --paths command in the terminal.

ctags -R -f gems.tag `bundle show --paths`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment