forked from peterc/whatlanguage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwhatlanguage.gemspec
39 lines (37 loc) · 995 Bytes
/
whatlanguage.gemspec
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
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