Sha256: 8daf6d64c6a13ca89794fa7da2e8633d9d716520ecabde76f65ae1733b36107a

Contents?: true

Size: 1.13 KB

Versions: 13

Compression:

Stored size: 1.13 KB

Contents

# -*- ruby -*-

require 'pathname'

base_dir = Pathname(__FILE__).dirname.expand_path
test_unit_dir = (base_dir.parent + "test-unit").expand_path
test_unit_lib_dir = test_unit_dir + "lib"
lib_dir = base_dir + "lib"

$LOAD_PATH.unshift(test_unit_lib_dir.to_s)
$LOAD_PATH.unshift(lib_dir.to_s)

require 'test/unit/notify'

require 'rubygems'
require 'hoe'

Test::Unit.run = true

version = Test::Unit::Notify::VERSION
ENV["VERSION"] = version
Hoe.spec('test-unit-notify') do
  self.version = version
  self.rubyforge_name = "test-unit"

  developer('Kouhei Sutou', 'kou@clear-code.com')

  extra_deps << ["test-unit", ">= 2.1.2"]
end

task :docs do
  doc_dir = base_dir + "doc"
  doc_screenshot_dir = doc_dir + "screenshot"
  mkdir_p(doc_screenshot_dir.to_s)
  (base_dir + "screenshot").children.each do |file|
    next if file.directory?
    cp(file.to_s, doc_screenshot_dir.to_s)
  end
end

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

# vim: syntax=Ruby

Version data entries

13 entries across 9 versions & 3 rubygems

Version Path
bitclust-core-0.5.3 vendor/bundle/ruby/1.9.1/gems/bitclust-core-0.5.3/vendor/bundle/ruby/1.9.1/gems/test-unit-notify-0.3.0/Rakefile
bitclust-core-0.5.3 vendor/bundle/ruby/1.9.1/gems/bitclust-core-0.5.3/vendor/bundle/ruby/1.9.1/gems/bitclust-core-0.5.1/vendor/bundle/ruby/1.9.1/gems/test-unit-notify-0.3.0/Rakefile
bitclust-core-0.5.3 vendor/bundle/ruby/1.9.1/gems/test-unit-notify-0.3.0/Rakefile
bitclust-core-0.5.3 vendor/bundle/ruby/1.9.1/gems/bitclust-core-0.5.1/vendor/bundle/ruby/1.9.1/gems/test-unit-notify-0.3.0/Rakefile
bitclust-core-0.5.2 vendor/bundle/ruby/1.9.1/gems/bitclust-core-0.5.1/vendor/bundle/ruby/1.9.1/gems/test-unit-notify-0.3.0/Rakefile
bitclust-core-0.5.2 vendor/bundle/ruby/1.9.1/gems/test-unit-notify-0.3.0/Rakefile
bitclust-core-0.5.1 vendor/bundle/ruby/1.9.1/gems/test-unit-notify-0.3.0/Rakefile
test-unit-notify-0.3.0 Rakefile
test-unit-notify-0.2.1 Rakefile
test-unit-notify-0.2.0 Rakefile
activegroonga-1.0.1 test-unit-notify/Rakefile
activegroonga-1.0.0 test-unit-notify/Rakefile
test-unit-notify-0.1.0 Rakefile