chuyeow / facon

Facon is a mocking library in the spirit of the Bacon spec library. Small, compact, and works with Bacon.

This URL has Read+Write access

chuyeow (author)
Thu Dec 04 23:36:39 -0800 2008
commit  89181b4a057f8bbdd2a1e5935fdf6149fcb9184c
tree    fd9b34f1b00bce04ac447aa11dd47b053b508fab
parent  3c4a596676cc5e102576dd65dca292dc36f4508f
facon / Rakefile
f57e2331 » chuyeow 2008-02-09 First commit with stubs wor... 1 require 'rubygems'
2 require 'hoe'
3 $:.unshift(File.dirname(__FILE__) + '/lib')
4 require 'facon'
5
6 Hoe.new('facon', Facon::VERSION) do |p|
7 p.rubyforge_name = 'facon'
8 p.author = 'Cheah Chu Yeow'
9 p.email = 'chuyeow@gmail.com'
10 p.summary = 'Tiny mocking library.'
0042064d » chuyeow 2008-12-04 Update version to 0.4.0. 11 p.url = 'http://github.com/chuyeow/facon/'
20fbb303 » chuyeow 2008-02-10 Facon will inject itself in... 12 p.description = 'A mocking library in the spirit of the Bacon spec library. Small, compact, and works with Bacon.'
f57e2331 » chuyeow 2008-02-09 First commit with stubs wor... 13 p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
7054864b » chuyeow 2008-02-10 Added some docs. 14 p.remote_rdoc_dir = 'rdocs'
f57e2331 » chuyeow 2008-02-09 First commit with stubs wor... 15 # p.clean_globs = ['test/actual'] # Remove this directory on "rake clean"
16 end