forked from louismullie/stanford-core-nlp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
stanford-core-nlp.gemspec
26 lines (21 loc) · 1000 Bytes
/
stanford-core-nlp.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'stanford-core-nlp/version'
Gem::Specification.new do |s|
s.name = 'stanford-core-nlp'
s.version = StanfordCoreNLP::VERSION
s.authors = ['Louis Mullie']
s.email = ['[email protected]']
s.homepage = 'https://github.com/louismullie/stanford-core-nlp'
s.summary = %q{ Ruby bindings to the Stanford Core NLP tools. }
s.description = %q{ High-level Ruby bindings to the Stanford CoreNLP package, a set natural language processing
tools that provides tokenization, part-of-speech tagging and parsing for several languages, as well as named entity
recognition and coreference resolution for English. }
# Add all files.
s.files = Dir['lib/**/*'] + Dir['bin/**/*'] + ['README.md', 'LICENSE']
# Runtime dependencies
s.add_runtime_dependency 'bind-it', '~>0.2.7'
# Development dependency.
s.add_development_dependency 'rspec'
s.add_development_dependency 'rake'
end