require 'rubygems' require 'hoe' # require './lib/test_benchmark.rb' Hoe.new("test_benchmark", '0.0.3') do |p| p.summary = "A plugin for showing how long tests take to run." p.rubyforge_name = 'seattlerb' p.author = 'Geoffrey Grosenbach' p.email = 'boss AT topfunky.com' p.description = 'A simple hack that prints a report of test/unit test runtimes.' p.url = "http://rubyforge.org/projects/seattlerb" p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n") end