-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtokenizer.gemspec
35 lines (32 loc) · 1.38 KB
/
tokenizer.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
lib_path = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib_path) unless $LOAD_PATH.include?(lib_path)
require 'tokenizer/version'
require 'rake'
Gem::Specification.new do |s|
s.name = 'tokenizer'
s.summary = 'Tokenizer is a tool intended to split a text into tokens.'
s.description = 'A simple multilingual tokenizer for NLP tasks. This tool '\
'provides a CLI and a library for linguistic tokenization '\
'which is an anavoidable step for many HLT (human language '\
'technology) tasks in the preprocessing phase for further '\
'syntactic, semantic and other higher level processing '\
'goals. Use it for tokenization of German, '\
'English and French texts.'
s.rubyforge_project = 'tokenizer'
s.version = Tokenizer::VERSION
s.author = 'Andrei Beliankou'
s.email = '[email protected]'
s.homepage = 'https://github.com/arbox/tokenizer'
s.license = 'MIT'
s.executables << 'tokenize'
s.extra_rdoc_files = FileList['*.rdoc'].to_a
s.required_ruby_version = '>= 1.9.3'
s.files = FileList['lib/**/*.rb',
'README.rdoc',
'LICENSE.rdoc',
'CHANGELOG.rdoc',
'.yardopts',
'test/**/*',
'bin/*'].to_a
s.test_files = FileList['test/**/*'].to_a
end