public
Description: A pending method for Test::Unit kind of like RSpec's except perhaps a little more strict or perhaps not or perhaps it's just a little edgy about living in RSpec's shadow or maybe it's just grumpy or maybe...
Homepage:
Clone URL: git://github.com/jeremymcanally/pending.git
Click here to lend your support to: pending and make a donation at www.pledgie.com !
jduff (author)
Thu Feb 05 08:57:48 -0800 2009
jeremymcanally (committer)
Tue Feb 10 23:32:20 -0800 2009
commit  a4933e88399f8c449892b0737334803763f6f735
tree    cd4e65b8da4e321d6fa76a9255b1d595a98f8ce3
parent  39e3328003ee7b450005b1ec88cc8fc5639574b0
pending / Rakefile
100644 27 lines (20 sloc) 0.566 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.
 
begin
  require 'bones'
  Bones.setup
rescue LoadError
  load 'tasks/setup.rb'
end
 
ensure_in_path 'lib'
require 'pending'
 
task :default => 'spec:run'
 
PROJ.name = 'pending'
PROJ.authors = 'FIXME (who is writing this software)'
PROJ.email = 'FIXME (your e-mail)'
PROJ.url = 'FIXME (project homepage)'
PROJ.version = '0.1'
PROJ.rubyforge.name = 'pending'
 
PROJ.spec.opts << '--color'
 
# EOF