-
Notifications
You must be signed in to change notification settings - Fork 58
/
sparql-client.gemspec
executable file
·44 lines (38 loc) · 2.12 KB
/
sparql-client.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
41
42
43
44
#!/usr/bin/env ruby -rubygems
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.version = File.read('VERSION').chomp
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
gem.name = 'sparql-client'
gem.homepage = 'https://github.com/ruby-rdf/sparql-client'
gem.license = 'Unlicense'
gem.summary = 'SPARQL client for RDF.rb.'
gem.description = %(Executes SPARQL queries and updates against a remote SPARQL 1.0 or 1.1 endpoint,
or against a local repository. Generates SPARQL queries using a simple DSL.
Includes SPARQL::Client::Repository, which allows any endpoint supporting
SPARQL Update to be used as an RDF.rb repository.)
gem.metadata = {
"documentation_uri" => "https://ruby-rdf.github.io/sparql-client",
"bug_tracker_uri" => "https://github.com/ruby-rdf/sparql-client/issues",
"homepage_uri" => "https://github.com/ruby-rdf/sparql-client",
"mailing_list_uri" => "https://lists.w3.org/Archives/Public/public-rdf-ruby/",
"source_code_uri" => "https://github.com/ruby-rdf/sparql-client",
}
gem.authors = ['Arto Bendiken', 'Ben Lavender', 'Gregg Kellogg']
gem.email = '[email protected]'
gem.platform = Gem::Platform::RUBY
gem.files = %w(AUTHORS CREDITS README.md UNLICENSE VERSION) + Dir.glob('lib/**/*.rb')
gem.bindir = %q(bin)
gem.require_paths = %w(lib)
gem.required_ruby_version = '>= 3.0'
gem.requirements = []
gem.add_runtime_dependency 'rdf', '~> 3.3'
gem.add_runtime_dependency 'net-http-persistent', '~> 4.0', '>= 4.0.2'
gem.add_development_dependency 'rdf-spec', '~> 3.3'
gem.add_development_dependency 'sparql', '~> 3.3'
gem.add_development_dependency 'rspec', '~> 3.12'
gem.add_development_dependency 'rspec-its', '~> 1.3'
gem.add_development_dependency 'webmock', '~> 3.19'
gem.add_development_dependency 'yard' , '~> 0.9'
gem.post_install_message = nil
end