timocratic / test_benchmark

Rails plugin (and/or ruby gem) for benchmarking your test::units: a rework of the original by topfunky

This URL has Read+Write access

test_benchmark / Rakefile
100644 14 lines (12 sloc) 0.483 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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