public
Description: A language detection library for Ruby that uses bloom filters for speed.
Homepage:
Clone URL: git://github.com/peterc/whatlanguage.git
whatlanguage / whatlanguage.gemspec
100644 40 lines (37 sloc) 0.995 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Gem::Specification.new do |s|
  s.name = "whatlanguage"
  s.version = "1.0.3"
  s.date = "2008-09-29"
  s.summary = "Natural language detection for text samples"
  s.email = "whatlanguage@peterc.org"
  s.homepage = "http://github.com/peterc/whatlanguage"
  s.description = "WhatLanguage rapidly detects the language of a sample of text"
  s.has_rdoc = true
  s.authors = ["Peter Cooper"]
  s.files = [
"build_filter.rb",
"build_lang_from_wordlists.rb",
"example.rb",
"History.txt",
"lang/dutch.lang",
"lang/english.lang",
"lang/farsi.lang",
"lang/french.lang",
"lang/german.lang",
"lang/pinyin.lang",
"lang/portuguese.lang",
"lang/russian.lang",
"lang/spanish.lang",
"lang/swedish.lang",
"lib/bitfield.rb",
"lib/bloominsimple.rb",
"lib/whatlanguage.rb",
"Manifest.txt",
"Rakefile",
"README",
"README.txt",
"test/test_whatlanguage.rb",
"whatlanguage.gemspec"]
 
  s.rdoc_options = ["--main", "README.txt"]
  s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
end