-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrdf-lmdb.gemspec
40 lines (36 loc) · 1.38 KB
/
rdf-lmdb.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
# -*- mode: enh-ruby -*-
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "rdf/lmdb/version"
Gem::Specification.new do |spec|
spec.name = 'rdf-lmdb'
spec.version = RDF::LMDB::VERSION
spec.authors = ['Dorian Taylor']
spec.email = ['[email protected]']
spec.license = 'Apache-2.0'
spec.homepage = 'https://github.com/doriantaylor/rb-rdf-lmdb'
spec.summary = 'Symas LMDB back-end for RDF::Repository'
spec.description = <<-DESC
This module implements RDF::Repository on top of LMDB, a fast and
robust key-value store.
DESC
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
# ruby
spec.required_ruby_version = '>= 2.0'
# dev/test dependencies
spec.add_development_dependency 'bundler', '~> 2'
spec.add_development_dependency 'rake', '~> 13'
spec.add_development_dependency 'rspec', '~> 3'
spec.add_development_dependency 'rdf-spec', '~> 3'
# stuff we use
spec.add_runtime_dependency 'unf', '~> 0.1'
spec.add_runtime_dependency 'rdf', '~> 3'
spec.add_runtime_dependency 'lmdb', '~> 0.6', '>= 0.6.2'
end