Sha256: b2556f9ef6fa371737d0b6f562aa10b1e790becac76300a6da2db066520c3067

Contents?: true

Size: 1.46 KB

Versions: 26

Compression:

Stored size: 1.46 KB

Contents

# -*- ruby -*-

Encoding.default_internal = "UTF-8" if defined?(Encoding.default_internal)

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

ENV["NODOT"] = "yes"

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

  # Ex-Parrot:
  # 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

desc "Publish HTML to Web site."
task :publish_html do
  config = YAML.load(File.read(File.expand_path("~/.rubyforge/user-config.yml")))
  host = "#{config["username"]}@rubyforge.org"

  rsync_args = "-av --exclude '*.erb' --exclude '*.svg' --exclude .svn"
  remote_dir = "/var/www/gforge-projects/#{project.rubyforge_name}/"
  sh "rsync #{rsync_args} html/ #{host}:#{remote_dir}"
end

desc "Tag the current revision."
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

26 entries across 26 versions & 4 rubygems

Version Path
activegroonga-1.0.4 test-unit/Rakefile
rroonga-1.2.0 test-unit/Rakefile
glib2-0.90.8-x86-mingw32 test-unit/Rakefile
glib2-0.90.8 test-unit/Rakefile
test-unit-2.2.0 Rakefile
glib2-0.90.7-x86-mingw32 test-unit/Rakefile
glib2-0.90.7 test-unit/Rakefile
glib2-0.90.6 test-unit/Rakefile
glib2-0.90.6-x86-mingw32 test-unit/Rakefile
rroonga-1.0.8 test-unit/Rakefile
activegroonga-1.0.3 test-unit/Rakefile
rroonga-1.0.7 test-unit/Rakefile
activegroonga-1.0.1 test-unit/Rakefile
activegroonga-1.0.0 test-unit/Rakefile
test-unit-2.1.2 Rakefile
glib2-0.90.5 test-unit/Rakefile
glib2-0.90.5-x86-mingw32 test-unit/Rakefile
glib2-0.90.4 test-unit/Rakefile
glib2-0.90.4-x86-mingw32 test-unit/Rakefile
glib2-0.90.3 test-unit/Rakefile