Sha256: 0f3ac18bf6e3f6538cd0a7c9e0760fabf8011feb513abb4f45a6d1cfb5538553

Contents?: true

Size: 842 Bytes

Versions: 12

Compression:

Stored size: 842 Bytes

Contents

# -*- ruby -*-

$TESTING_MINIUNIT = true

require 'rubygems'
require 'hoe'

Hoe.plugin :seattlerb

Hoe.spec 'minitest' do
  developer 'Ryan Davis', 'ryand-ruby@zenspider.com'

  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

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
minitest-2.3.1 Rakefile
minitest-2.3.0 Rakefile
minitest-2.2.2 Rakefile
minitest-2.2.1 Rakefile
minitest-2.2.0 Rakefile
minitest-2.1.0 Rakefile
minitest-2.0.2 Rakefile
minitest-2.0.1 Rakefile
minitest-2.0.0 Rakefile
minitest-1.7.2 Rakefile
minitest-1.7.1 Rakefile
minitest-1.7.0 Rakefile