Sha256: e3483619edc4599bfbdb9825a08c757d5933c9d00e4a2cbcb91034072b1c04bb

Contents?: true

Size: 751 Bytes

Versions: 1

Compression:

Stored size: 751 Bytes

Contents

#!/usr/local/bin/ruby -ws
# 
# unit_diff - a ruby unit test filter by Ryan Davis <ryand-ruby@zenspider.com>
#
# usage:
#
#  test.rb | unit_diff [options]
#    options:
#    -b ignore whitespace differences
#    -c contextual diff
#    -h show usage
#    -k keep temp diff files around
#    -u unified diff
#    -v display version

require 'unit_diff'

############################################################

#TODO fix this...
if defined? $v then
  puts "#{File.basename $0} v. #{ZenTest::VERSION}"
  exit 0
end

if defined? $h then
  File.open(__FILE__) do |f|
    begin; end until f.readline =~ /usage:/
    f.readline
    while line = f.readline and line.sub!(/^# ?/, '')
      $stderr.puts line
    end
  end
  exit 0
end

UnitDiff.unit_diff

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
grosser-autotest-4.0.3 bin/unit_diff