-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkabusin.gemspec
32 lines (26 loc) · 1.31 KB
/
kabusin.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
Gem::Specification.new do |spec|
spec.name = "kabusin"
spec.version = "1.0.0"
spec.authors = ["Scribouilli"]
spec.email = "[email protected]"
spec.summary = "Kabusin, a Jekyll theme"
spec.homepage = "https://git.scribouilli.org/scribouilli/kabusin"
spec.description = "Kabusin is a Jekyll theme for Framalibre mini-sites, built with Scribouilli."
spec.license = "MIT"
spec.metadata["plugin_type"] = "theme"
spec.required_ruby_version = ">= 3.2.0"
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r!^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))!i)
end
spec.add_runtime_dependency "jekyll", "~> 4.3.2"
spec.add_runtime_dependency "jekyll-redirect-from", "~> 0.16"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4"
spec.add_runtime_dependency "jekyll-feed", "~> 0.17"
spec.add_runtime_dependency "jekyll-paginate-v2", "~> 3.0"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.8"
spec.add_runtime_dependency "jekyll-optional-front-matter", "~> 0.3"
spec.add_runtime_dependency "jekyll-default-layout", "~> 0.1.5"
spec.add_runtime_dependency "jekyll-titles-from-headings", "~> 0.5.3"
spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "rake", "~> 12.0"
end