This repository has been archived by the owner on Dec 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnlp_toolz.gemspec
46 lines (38 loc) · 1.54 KB
/
nlp_toolz.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
39
40
41
42
43
44
45
46
# coding: utf-8
# @author: LeFnord
# @email: [email protected]
# @date: 2012-10-23
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'nlp_toolz/version'
Gem::Specification.new do |gem|
gem.name = "nlp_toolz"
gem.version = NlpToolz::VERSION
gem.authors = ["LeFnord"]
gem.email = ["[email protected]"]
gem.description = %q{make NLP tools available, from OpenNLP and BerkeleyParser}
gem.summary = %q{wrapper around the openNLP toolset}
gem.homepage = "https://github.com/LeFnord/nlp_toolz"
gem.license = "MIT"
gem.required_ruby_version = '~> 2.3'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency "rspec"
gem.add_development_dependency "guard"
gem.add_development_dependency "rb-fsevent"
gem.add_development_dependency "guard-rspec"
gem.add_development_dependency "guard-bundler"
gem.add_development_dependency "terminal-notifier-guard"
gem.add_development_dependency "yard"
gem.add_development_dependency "syntax"
gem.add_development_dependency "awesome_print"
gem.add_runtime_dependency "rjb"
gem.add_runtime_dependency "multi_json"
gem.add_runtime_dependency "gli"
gem.add_runtime_dependency "rake"
#for downloading models and jars
gem.add_runtime_dependency "rubyzip"
gem.add_runtime_dependency "zip-zip"
end