public
Description: A benchmarking helper for httperf.
Homepage: http://bong.rubyforge.org/
Clone URL: git://github.com/topfunky/bong.git
bong / Rakefile
100644 17 lines (13 sloc) 0.463 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'rubygems'
 
require 'hoe'
require './lib/bong.rb'
 
Hoe.new('bong', Bong::VERSION) do |p|
  p.rubyforge_name = 'bong'
  p.author = 'Geoffrey Grosenbach'
  p.email = 'boss@topfunky.com'
  p.summary = 'Website benchmarking helper.'
  p.description = p.paragraphs_of('README.txt', 1..2).join("\n\n")
  p.url = "http://rubyforge.org/projects/bong"
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
 
  p.remote_rdoc_dir = '' # Release to root
end