This repository has been archived by the owner on Sep 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gemspec
40 lines (39 loc) · 1.79 KB
/
.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
Gem::Specification.new do |spec|
spec.name = 'bel_parser'
spec.version = File.read(
File.join(
File.expand_path(File.dirname(__FILE__)),
'VERSION'))
spec.summary = %q{Parser for Biolgical Expression Language.}
spec.description = %q{Implements language versions 1.0 and 2.0.}
spec.license = 'Apache-2.0'
spec.authors = [
'Anthony Bargnesi',
'Nick Bargnesi',
]
spec.date = %q{2017-05-22}
spec.email = %q{[email protected]}
spec.files = [
Dir.glob('lib/**/*.{rb,rl}'),
__FILE__,
'VERSION',
'CHANGELOG.md',
'LICENSE',
'README.md'
].flatten!
spec.executables = Dir.glob('bin/*').map(&File.method(:basename))
spec.homepage = 'https://github.com/OpenBEL/bel_parser'
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.0.0'
if RUBY_ENGINE =~ /jruby/
spec.platform = 'java'
spec.add_runtime_dependency 'sparql-client', '~> 2.0.0'
spec.add_runtime_dependency 'dbm-mapdb3', '~> 0.6.0.beta'
spec.add_runtime_dependency 'levenshtein-jruby', '0.1.0'
else
spec.platform = 'ruby'
spec.add_runtime_dependency 'sparql-client', '~> 2.0.0'
spec.add_runtime_dependency 'damerau-levenshtein', '1.2.0'
end
end
# vim: ft=ruby