1 # -*- encoding: utf-8 -*-
2 lib = File.expand_path('../lib/', __FILE__)
3 $:.unshift lib unless $:.include?(lib)
5 require 'anystyle/version'
7 Gem::Specification.new do |s|
9 s.version = AnyStyle::VERSION.dup
10 s.platform = Gem::Platform::RUBY
11 s.authors = ['Sylvester Keil']
12 s.email = ['http://sylvester.keil.or.at']
13 s.homepage = 'http://anystyle.io'
14 s.summary = 'Smart and fast bibliography parser.'
15 s.description = 'A sophisticated parser for academic reference lists and bibliographies based on machine learning algorithms using conditional random fields.'
16 s.license = 'BSD-2-Clause'
18 s.require_path = 'lib'
20 s.required_ruby_version = '>= 2.2'
22 s.add_runtime_dependency('bibtex-ruby', '~>5.0')
23 s.add_runtime_dependency('anystyle-data', '~>1.2')
24 s.add_runtime_dependency('gli', '~>2.17')
25 s.add_runtime_dependency('wapiti', '~>1.0', '>=1.0.2')
26 s.add_runtime_dependency('namae', '~>1.0')
29 `git ls-files`.split("\n") - `git ls-files spec`.split("\n") - %w{
48 s.extra_rdoc_files = %w{README.md LICENSE}