Sha256: e811d7810a817b5ea7e9743de189093c3eec145c2362a033bde763b05d06aab4

Contents?: true

Size: 307 Bytes

Versions: 55

Compression:

Stored size: 307 Bytes

Contents

#!/usr/bin/env ruby

paths = %w[ . ] + `bundle list --paths`.lines.map(&:chomp)
cmd = %w[ ctags --recurse=yes --languages=Ruby,C ] + paths
$DEBUG and warn "Executing #{cmd * ' '}."
system *cmd
megabytes = File.size('tags').to_f / 1024 ** 2 rescue nil
megabytes and warn 'Created %.3fM of tags.' % megabytes

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
utils-0.9.0 bin/create_tags
utils-0.2.4 bin/create_tags
utils-0.2.3 bin/create_tags
utils-0.2.2 bin/create_tags
utils-0.2.1 bin/create_tags
utils-0.2.0 bin/create_tags
utils-0.1.1 bin/create_tags
utils-0.1.0 bin/create_tags
utils-0.0.100 bin/create_tags
utils-0.0.99 bin/create_tags
utils-0.0.98 bin/create_tags
utils-0.0.97 bin/create_tags
utils-0.0.96 bin/create_tags
utils-0.0.95 bin/create_tags
utils-0.0.94 bin/create_tags
utils-0.0.93 bin/create_tags
utils-0.0.92 bin/create_tags
utils-0.0.91 bin/create_tags
utils-0.0.90 bin/create_tags
utils-0.0.89 bin/create_tags