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