-
Notifications
You must be signed in to change notification settings - Fork 13
/
tactful_tokenizer.gemspec
25 lines (21 loc) · 1.03 KB
/
tactful_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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "tactful_tokenizer/version"
Gem::Specification.new do |s|
s.name = "tactful_tokenizer"
s.version = TactfulTokenizer::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Matthew Bunday", "Sergey Kishenin"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/zencephalon/Tactful_Tokenizer"
s.summary = "High accuracy sentence tokenization for Ruby."
s.description = "TactfulTokenizer uses a naive bayesian model train on the Brown and WSJ corpuses to provide high quality sentence tokenization."
s.license = "GPL-3"
s.rubyforge_project = "tactful_tokenizer"
s.files = `git ls-files`.split($\)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_development_dependency "rspec", "~> 2.14.1"
s.add_development_dependency "rake", "~> 10.3.1"
end