Sha256: 543f65931cdd1f66c1f18592bcd9f661a6e9e2557d1c92120810452e0a0a0243

Contents?: true

Size: 577 Bytes

Versions: 1

Compression:

Stored size: 577 Bytes

Contents

#!/usr/bin/env ruby

require 'reap/application'

HELP = <<-END
Usage: #{File.basename($0)} [options]

Scan source code counting files, lines of code and comments
and presents a report of it's findings.

  loadpath   Path to include in analysis. The default
             is the project's loadpath.

  exclude    File globs to exclude from analysis. Default is
             'ext' b/c this does not yet support C analysis.

This command does not currently support C coded extensions.
END

if ARGV.include?('--help')
  puts HELP
else
  app = Reap::Application.new
  app.stats
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reap-9.4.0 bin/reap-stats