bin/reap-spec in reap-9.3.5 vs bin/reap-spec in reap-9.4.0

- old
+ new

@@ -1,7 +1,19 @@ #!/usr/bin/env ruby require 'reap/application' -app = Reap::Application.new +HELP = <<-END +Usage: #{File.basename($0)} [options] -app.spec +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 +