-
Notifications
You must be signed in to change notification settings - Fork 11
/
sxp.gemspec
executable file
·41 lines (34 loc) · 1.76 KB
/
sxp.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
#!/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 = 'sxp'
gem.homepage = 'https://github.com/dryruby/sxp/'
gem.license = 'Unlicense'
gem.summary = 'A pure-Ruby implementation of a universal S-expression parser.'
gem.description = 'Universal S-expression parser with specific support for Common Lisp, Scheme, and RDF/SPARQL'
gem.metadata = {
"documentation_uri" => "https://dryruby.github.io/sxp",
"bug_tracker_uri" => "https://github.com/dryruby/sxp/issues",
"homepage_uri" => "https://github.com/dryruby/sxp",
"mailing_list_uri" => "https://lists.w3.org/Archives/Public/public-rdf-ruby/",
"source_code_uri" => "https://github.com/dryruby/sxp",
'rubygems_mfa_required' => 'true',
}
gem.author = ['Arto Bendiken', 'Gregg Kellogg']
gem.email = ['[email protected]', '[email protected]']
gem.platform = Gem::Platform::RUBY
gem.files = %w(AUTHORS CREDITS README.md UNLICENSE VERSION) + Dir.glob('bin/*.rb') + Dir.glob('lib/**/*.rb')
gem.bindir = %q(bin)
gem.executables = %w(sxp2rdf sxp2json sxp2xml sxp2yaml)
gem.require_paths = %w(lib)
gem.required_ruby_version = '>= 3.0'
gem.requirements = []
gem.add_runtime_dependency 'rdf', '~> 3.3'
gem.add_runtime_dependency 'matrix', '~> 0.4'
gem.add_development_dependency 'amazing_print', '~> 1.5'
gem.add_development_dependency 'rspec', '~> 3.12'
gem.add_development_dependency 'yard' , '~> 0.9'
gem.post_install_message = nil
end