forked from minitest/minitest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
43 lines (34 loc) · 842 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- ruby -*-
$TESTING_MINIUNIT = true
require 'rubygems'
require 'hoe'
Hoe.plugin :seattlerb
Hoe.spec 'minitest' do
developer 'Ryan Davis', '[email protected]'
self.rubyforge_name = "bfts"
self.testlib = :minitest
end
def loc dir
system "find #{dir} -name \\*.rb | xargs wc -l | tail -1"
end
desc "stupid line count"
task :dickwag do
puts
puts "miniunit"
puts
print " lib loc"; loc "lib"
print " test loc"; loc "test"
print " totl loc"; loc "lib test"
print " flog = "; system "flog -s lib"
puts
puts "test/unit"
puts
Dir.chdir File.expand_path("~/Work/svn/ruby/ruby_1_8") do
print " lib loc"; loc "lib/test"
print " test loc"; loc "test/testunit"
print " totl loc"; loc "lib/test test/testunit"
print " flog = "; system "flog -s lib/test"
end
puts
end
# vim: syntax=Ruby