Removed obsolete bin scripts.
[rbx.git] / test / bfts / Rakefile
blob4fbbbbffd6f3670a24dd27bef5b6cb43907feff1
1 # -*- ruby -*-
3 require 'rubygems'
4 require 'hoe'
5 require './rubicon_testcase.rb'
7 Hoe.new('bfts', RubiconTestCase::VERSION) do |p|
8   p.rubyforge_name = 'bfts'
9   p.summary = 'Big "Formal" Test Suite'
10   p.description = p.paragraphs_of('README.txt', 2).join("\n\n")
11   p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
12   p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
13   p.extra_deps << "miniunit"
14   p.test_globs = "test*.rb"
15 end
17 # vim: syntax=Ruby