Sha256: 70c1ce30901d9c8ea2369393223049179cccd43f4c0522bffdeaffcda59a33f2
Contents?: true
Size: 906 Bytes
Versions: 2
Compression:
Stored size: 906 Bytes
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/engtagger/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Yoichiro Hasebe"] gem.email = ["yohasebe@gmail.com"] gem.summary = %q{A probability based, corpus-trained English POS tagger} gem.description = %q{A Ruby port of Perl Lingua::EN::Tagger, a probability based, corpus-trained tagger that assigns POS tags to English text based on a lookup dictionary and a set of probability values.} gem.homepage = "http://github.com/yohasebe/engtagger" 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.name = "engtagger" gem.require_paths = ["lib"] gem.version = EngTagger::VERSION gem.add_runtime_dependency 'lru_redux' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
engtagger-0.3.2 | engtagger.gemspec |
engtagger-0.3.1 | engtagger.gemspec |