public
Description: A Ruby binding for the Aspell spelling checker
Homepage: http://blog.evanweaver.com/files/doc/fauna/raspell/
Clone URL: git://github.com/fauna/raspell.git
evan (author)
Tue Feb 05 02:33:16 -0800 2008
commit  be421f7cb882baa5dfd1da12f3e0a25ce11d1c03
tree    e6b1e2b86a5e43a8b2b3ec84fd191714efddf240
parent  7568e92c7df77101dffb9cdce30c95984bb4124b
raspell / Rakefile
100644 16 lines (13 sloc) 0.53 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'rubygems'
gem 'echoe', '>=2.3'
require 'echoe'
 
Echoe.new("raspell") do |p|
  p.rubyforge_name = "fauna"
  p.summary = "An interface binding for the Aspell spelling checker."
  p.url = "http://blog.evanweaver.com/files/doc/fauna/raspell/"
  p.docs_host = "blog.evanweaver.com:~/www/bax/public/files/doc/"
  p.has_rdoc = false # avoids warnings on gem install
  p.rdoc_pattern = /CHANGELOG|EXAMPLE|LICENSE|README|lib/
  p.rdoc_options = [] # don't want to include the stubbed out source
  p.require_signed = true
end