Sha256: 88137e83a5d040b0028b979d9dc3e308be25c0ebf18739f746f74f0b30fa9f7a

Contents?: true

Size: 994 Bytes

Versions: 33

Compression:

Stored size: 994 Bytes

Contents

# -*- ruby -*-

require 'rubygems'
gem 'rdoc'
require 'hoe'
require './lib/test/unit/version.rb'

ENV["NODOT"] = "yes"

version = Test::Unit::VERSION
ENV["VERSION"] = version
Hoe.spec('test-unit') do |p|
  Hoe::Test::SUPPORTED_TEST_FRAMEWORKS[:testunit2] = "test/run-test.rb"
  p.version = version
  p.developer('Kouhei Sutou', 'kou@cozmixng.org')
  p.developer('Ryan Davis', 'ryand-ruby@zenspider.com')

  # Ex-Parrot:
  # p.developer('Nathaniel Talbott', 'nathaniel@talbott.ws')
end

task :check_manifest => :clean_test_result
task :check_manifest => :clean_coverage

task :clean_test_result do
  test_results = Dir.glob("**/.test-result")
  sh("rm", "-rf", *test_results) unless test_results.empty?
end

task :clean_coverage do
  sh("rm", "-rf", "coverage")
end

task :tag do
  message = "Released Test::Unit #{version}!"
  base = "svn+ssh://#{ENV['USER']}@rubyforge.org/var/svn/test-unit/"
  sh 'svn', 'copy', '-m', message, "#{base}trunk", "#{base}tags/#{version}"
end

# vim: syntax=Ruby

Version data entries

33 entries across 33 versions & 7 rubygems

Version Path
rroonga-1.1.0 test-unit/Rakefile
rroonga-1.0.9 test-unit/Rakefile
rroonga-1.0.5 test-unit/Rakefile
rroonga-1.0.4 test-unit/Rakefile
rroonga-1.0.3 test-unit/Rakefile
rroonga-1.0.2 test-unit/Rakefile
rroonga-0.9.5-x86-mingw32 test-unit/Rakefile
rroonga-0.9.5 test-unit/Rakefile
activeldap-1.2.2 test-unit/Rakefile
test-unit-2.0.9 Rakefile
test-unit-2.0.8 Rakefile
rroonga-0.9.3-x86-mingw32 test-unit/Rakefile
rroonga-0.9.3 test-unit/Rakefile
rroonga-0.9.2-x86-mingw32 test-unit/Rakefile
rroonga-0.9.2-mswin32 test-unit/Rakefile
rroonga-0.9.2 test-unit/Rakefile
test-unit-2.0.7 Rakefile
groonga-0.9.1 test-unit/Rakefile
groonga-0.9.0 test-unit/Rakefile
test-unit-2.0.6 Rakefile