bin/cutest in cutest-1.0.0 vs bin/cutest in cutest-1.0.1
- old
+ new
@@ -1,11 +1,11 @@
#! /usr/bin/env ruby -rubygems
require File.expand_path("../lib/cutest", File.dirname(__FILE__))
if ARGV.empty?
- puts "usage: cutest [-r lib] [-v] [--debug] file ..."
+ puts "usage: cutest [-r lib] [-v] file ..."
exit
end
class Cutest
@@ -62,9 +62,8 @@
end
end
files = Cutest::Clap.run ARGV,
"-r" => lambda { |file| require file },
- "-v" => lambda { puts Cutest::VERSION },
- "--debug" => lambda { ENV["DEBUG"] = true }
+ "-v" => lambda { puts Cutest::VERSION }
Cutest.run(Dir[*files]) if files.any?