-
Notifications
You must be signed in to change notification settings - Fork 3
/
json-ld-preloaded.gemspec
executable file
·37 lines (31 loc) · 1.72 KB
/
json-ld-preloaded.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
#!/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 = "json-ld-preloaded"
gem.homepage = "https://github.com/ruby-rdf/json-ld-preloaded"
gem.license = 'Unlicense'
gem.summary = "JSON-LD with preloaded contexts for RDF.rb."
gem.description = "A meta-release of the json-ld gem including preloaded vocabularies for the Ruby RDF.rb library suite."
gem.metadata = {
"documentation_uri" => "https://ruby-rdf.github.io/json-ld-preloaded",
"bug_tracker_uri" => "https://github.com/ruby-rdf/json-ld-preloaded/issues",
"homepage_uri" => "https://github.com/ruby-rdf/json-ld-preloaded",
"mailing_list_uri" => "https://lists.w3.org/Archives/Public/public-rdf-ruby/",
"source_code_uri" => "https://github.com/ruby-rdf/json-ld-preloaded",
}
gem.authors = ['Gregg Kellogg']
gem.email = 'public-linked-json@w3.org'
gem.platform = Gem::Platform::RUBY
gem.files = %w(AUTHORS README.md UNLICENSE VERSION) + Dir.glob('lib/**/*.rb')
gem.require_paths = %w(lib)
gem.test_files = Dir.glob('spec/**/*.rb') + Dir.glob('spec/test-files/*')
gem.required_ruby_version = '>= 3.0'
gem.requirements = []
gem.add_runtime_dependency 'rdf', '~> 3.3'
gem.add_runtime_dependency 'json-ld', '~> 3.3'
gem.add_development_dependency 'rspec', '~> 3.12'
gem.add_development_dependency 'yard' , '~> 0.9'
gem.post_install_message = nil
end