Sha256: 4c20ad791666f70ad6f46ec4150948e37677cf54f1e534cf47f6650af9a819a4

Contents?: true

Size: 524 Bytes

Versions: 1

Compression:

Stored size: 524 Bytes

Contents

#!/usr/bin/env ruby

require 'reap/application'

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

Load each script independently to ensure there are no require
dependency issues. This takes one option:

  scripts     ruby files to check

Scripts is a glob of files or a list of globs. By default this
is all scripts in the libpath(s).

WARNING! You should only run this on scripts that have no
toplevel side-effects!!!
END

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reap-9.4.0 bin/reap-check-load