Sha256: 014a78a973438d3d299911e00043624a155c4a7068a14b09542066f4b484c96c
Contents?: true
Size: 362 Bytes
Versions: 26
Compression:
Stored size: 362 Bytes
Contents
#!/usr/bin/env ruby require 'infobar' paths = %w[ . ] + `bundle list --paths`.lines.map(&:chomp) cmd = %w[ ctags --recurse=yes --exclude=pkg --languages=Ruby,C ] + paths Infobar.busy(label: 'Creating tags', frames: :braille7) { system(*cmd) } if megabytes = File.size('tags').to_f / 1024 ** 2 rescue nil infobar.puts 'Created %.3fM of tags.' % megabytes end
Version data entries
26 entries across 26 versions & 1 rubygems