public
Description: A language detection library for Ruby that uses bloom filters for speed.
Homepage:
Clone URL: git://github.com/peterc/whatlanguage.git
whatlanguage / Rakefile
100644 18 lines (14 sloc) 0.505 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/whatlanguage.rb'
 
Hoe.new('whatlanguage', WhatLanguage::VERSION) do |p|
  p.rubyforge_name = 'whatlanguage'
  p.author = 'Peter Cooper'
  p.email = 'whatlanguage@peterc.org'
  p.summary = 'Fast, quick, textual language detection'
  p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
  p.url = "http://rubyforge.org/projects/whatlanguage/"
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
end
 
# vim: syntax=Ruby