forked from inukshuk/anystyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
anystyle-parser.gemspec
38 lines (29 loc) · 1.31 KB
/
anystyle-parser.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'anystyle/parser/version'
Gem::Specification.new do |s|
s.name = 'anystyle-parser'
s.version = Anystyle::Parser::VERSION.dup
s.platform = Gem::Platform::RUBY
s.authors = ['Sylvester Keil']
s.email = ['http://sylvester.keil.or.at']
s.homepage = 'http://anystyle.io'
s.summary = 'Smart and fast academic bibliography parser.'
s.description = 'A sophisticated parser for academic reference lists and bibliographies based on machine learning algorithms using conditional random fields.'
s.license = 'BSD-2-Clause-FreeBSD'
s.required_ruby_version = '>= 1.9.3'
s.add_runtime_dependency('bibtex-ruby', '~>4.0')
s.add_runtime_dependency('builder', '>=3.0', '<4.0')
s.add_runtime_dependency('wapiti', '~>0.1')
s.add_runtime_dependency('namae', '~>0.9')
s.files = `git ls-files`.split("\n").reject { |path|
path.start_with?('.')
} - Dir['resources/**/*']
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = []
s.require_path = 'lib'
s.rdoc_options = %w{--line-numbers --inline-source --title "Anystyle\ Parser" --main README.md}
s.extra_rdoc_files = %w{README.md LICENSE}
end
# vim: syntax=ruby