forked from cepdnaclk/Postgraduate-Coursepage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
minima.gemspec
25 lines (19 loc) · 876 Bytes
/
minima.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "minima-bootstrap-5"
spec.version = "1.0.0"
spec.authors = ["Nuwan Jaliyagoda"]
spec.email = ["[email protected]"]
spec.summary = "A beautiful, minimal theme for Jekyll with Bootstrap5 setup"
spec.homepage = "https://github.com/NuwanK/jekyll-minima-bootstrap-5"
spec.license = "MIT"
spec.metadata["plugin_type"] = "theme"
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", ">= 3.5", "< 5.0"
spec.add_runtime_dependency "jekyll-feed", "~> 0.9"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4.0"
spec.add_development_dependency "bundler"
end