-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathttl2html.gemspec
30 lines (30 loc) · 1017 Bytes
/
ttl2html.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
Gem::Specification.new do |s|
s.name = 'ttl2html'
s.version = '2.0.11'
s.date = '2024-11-19'
s.summary = "ttl2html"
s.description = "Static site generator for RDF/Turtle"
s.authors = ["Masao Takaku"]
s.email = '[email protected]'
s.files = [
"lib/ttl2html.rb", "lib/ttl2html/version.rb", "lib/ttl2html/template.rb",
"lib/ttl2html/util.rb",
"lib/xlsx2shape.rb",
]
s.files += Dir["templates/*", "locales/*"]
s.executables += ["ttl2html", "xlsx2shape", "catttl"]
s.homepage = 'https://github.com/masao/ttl2html'
s.license = 'MIT'
s.add_dependency "nokogiri"
s.add_dependency "rdf-turtle"
s.add_dependency "roo", "~>2.9.0"
s.add_dependency "csv"
s.add_dependency "i18n"
s.add_dependency "ruby-progressbar"
s.add_dependency "actionview"
s.add_dependency "getoptlong"
s.add_dependency "parallel"
s.add_development_dependency "rspec"
s.add_development_dependency "rake"
s.add_development_dependency "capybara"
end