public
Description: A super-clean IRC bot with sandboxed Ruby evaluation, repository watching, and link-logging to del.icio.us
Homepage: http://blog.evanweaver.com/files/doc/fauna/kirby/
Clone URL: git://github.com/fauna/kirby.git
kirby / Rakefile
100644 17 lines (13 sloc) 0.596 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'rubygems'
require 'echoe'
 
Echoe.new("kirby", `cat CHANGELOG`[/^v([\d\.]+)\. /, 1]) do |p|
p.name = "kirby"
p.rubyforge_name = "fauna"
p.description = p.summary = "A super-clean IRC bot with sandboxed Ruby evaluation, svn watching, and link-logging to del.icio.us."
p.url = "http://blog.evanweaver.com/files/doc/fauna/kirby/"
p.docs_host = "blog.evanweaver.com:~/www/bax/public/files/doc/"
p.changes = `cat CHANGELOG`[/^v([\d\.]+\. .*)/, 1]
 
p.extra_deps = ["hpricot", "daemons"]
p.rdoc_pattern = /bin|lib|README|CHANGELOG|LICENSE/
p.require_signed = true
end