public
Description: A Javascript BDD Framework with nested describes, a convenient assertion syntax, and an intuitive test browser.
Homepage:
Clone URL: git://github.com/nathansobo/screw-unit.git
Grockit (author)
Tue Oct 13 16:04:11 -0700 2009
commit  a3e5530a276282eda8469fd58398fd5c6c0eea3c
tree    53ffe7628e16326fc56a57be718363e5217c19ed
parent  858f427814647731da3f87ed1a982423078d7f06
screw-unit / Rakefile
100644 13 lines (9 sloc) 0.286 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/screw_unit.rb'
 
Hoe.new('screw_unit', ScrewUnit::VERSION) do |p|
  # p.rubyforge_name = 'screw_unitx' # if different than lowercase project name
  p.developer('Nathan Sobo', 'nathansobo@gmail.com')
end
 
# vim: syntax=Ruby