public
Description: Facon is a mocking library in the spirit of the Bacon spec library. Small, compact, and works with Bacon.
Homepage: http://rubyforge.org/projects/facon/
Clone URL: git://github.com/chuyeow/facon.git
Click here to lend your support to: facon and make a donation at www.pledgie.com !
facon / Rakefile
100644 17 lines (15 sloc) 0.599 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'rubygems'
require 'hoe'
$:.unshift(File.dirname(__FILE__) + '/lib')
require 'facon'
 
Hoe.new('facon', Facon::VERSION) do |p|
  p.rubyforge_name = 'facon'
  p.author = 'Cheah Chu Yeow'
  p.email = 'chuyeow@gmail.com'
  p.summary = 'Tiny mocking library.'
  p.url = 'http://github.com/chuyeow/facon/'
  p.description = 'A mocking library in the spirit of the Bacon spec library. Small, compact, and works with Bacon.'
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
  p.remote_rdoc_dir = 'rdocs'
  # p.clean_globs = ['test/actual'] # Remove this directory on "rake clean"
end