-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsparql-doc.gemspec
27 lines (25 loc) · 918 Bytes
/
sparql-doc.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
PKG_FILES = %w( README.md Rakefile ) +
Dir.glob("{bin,tests,lib}/**/*")
RDOC_OPTS = ['--quiet', '--title', 'SPARQL Doc Reference', '--main', 'README']
Gem::Specification.new do |s|
s.name = "sparql-doc"
s.version = "0.0.5"
s.licenses = "CC0-1.0"
s.platform = Gem::Platform::RUBY
s.required_ruby_version = ">= 2.5.0"
s.extra_rdoc_files = ["README.md"]
s.rdoc_options = RDOC_OPTS
s.summary = "SPARQL documentation generator"
s.description = "Generates HTML documentation for a collection of sparql queries"
s.author = "Leigh Dodds"
s.email = '[email protected]'
s.homepage = 'http://github.com/ldodds/sparql-doc'
s.files = PKG_FILES
s.require_path = "lib"
s.bindir = "bin"
s.executables = ["sparql-doc"]
s.test_file = "tests/ts_sparql_doc.rb"
s.add_dependency("json", "~> 2.5.1")
s.add_dependency("redcarpet", "~> 3.5.1")
s.add_development_dependency("fakefs", "~> 1.3.2")
end