Sha256: c0a55fd78531c916e003a921d0a752245e32f5022ccca6b21dcdc7501bba7896

Contents?: true

Size: 875 Bytes

Versions: 11

Compression:

Stored size: 875 Bytes

Contents

# -*- ruby -*-

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

version = Test::Unit::VERSION
ENV["VERSION"] = version
Hoe.new('test-unit', version) do |p|
  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

11 entries across 11 versions & 4 rubygems

Version Path
groonga-0.0.3 test-unit/Rakefile
groonga-0.0.4 test-unit/Rakefile
groonga-0.0.5 test-unit/Rakefile
activegroonga-0.0.1 test-unit/Rakefile
activegroonga-0.0.2 test-unit/Rakefile
activeldap-1.0.9 test-unit/Rakefile
activeldap-1.0.2 test-unit/Rakefile
groonga-0.0.2 test-unit/Rakefile
groonga-0.0.1 test-unit/Rakefile
test-unit-2.0.1 Rakefile
test-unit-2.0.2 Rakefile