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
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