Sha256: 1490137e40d3e477f3ff0d87b360b856219668f9f28cefdf18f7a525d5669339

Contents?: true

Size: 776 Bytes

Versions: 13

Compression:

Stored size: 776 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 :clean_test_result do
  test_results = Dir.glob("**/.test-result")
  sh("rm", "-rf", *test_results) unless test_results.empty?
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

13 entries across 13 versions & 2 rubygems

Version Path
cairo-1.8.5-x86-mingw32 test-unit/Rakefile
cairo-1.8.5 test-unit/Rakefile
cairo-1.8.4 test-unit/Rakefile
cairo-1.8.4-x86-mingw32 test-unit/Rakefile
cairo-1.8.3-x86-mingw32 test-unit/Rakefile
cairo-1.8.3 test-unit/Rakefile
cairo-1.8.1-x86-mswin32 test-unit/Rakefile
cairo-1.8.1 test-unit/Rakefile
cairo-1.8.0-x86-mswin32 test-unit/Rakefile
cairo-1.7.0-x86-mswin32 test-unit/Rakefile
cairo-1.7.0 test-unit/Rakefile
cairo-1.8.0 test-unit/Rakefile
test-unit-2.0.0 Rakefile