Sha256: 7fbd254064c5621c08bbf467e19fbc2cf1434f2a6c5547cf3e7e6ff6eec6ab89

Contents?: true

Size: 389 Bytes

Versions: 1

Compression:

Stored size: 389 Bytes

Contents

#!/usr/bin/env ruby

require 'reap/application'

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

Run specifications. This is a general specifications runner, which
loads all specs into a single process and and then runs them
consecutively. This shells out to the 'spec' command per RSpec.
END

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reap-9.4.0 bin/reap-spec