-
Notifications
You must be signed in to change notification settings - Fork 0
/
lone-wolf-theme.gemspec
43 lines (36 loc) · 1.83 KB
/
lone-wolf-theme.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
38
39
40
41
42
43
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "lone-wolf-theme"
spec.version = "1.1.0"
spec.authors = ["Mani Kumar"]
spec.summary = %q{A simple bootstrap based jekyll theme.}
spec.homepage = "https://manid2.github.io/lone-wolf-theme/"
spec.license = "MIT"
spec.description = <<-EOF
This theme is for jekyll static site generator.
It uses Bootstrap 4 with beautiful Bootswatch themes.
It is github-pages compatible and uses animate.css to add animations.
EOF
spec.metadata = {
"plugin_type" => "theme",
"bug_tracker_uri" => "https://github.com/manid2/lone-wolf-theme/issues",
"changelog_uri" => "https://github.com/manid2/lone-wolf-theme/blob/master/CHANGELOG.md",
"documentation_uri" => "https://github.com/manid2/lone-wolf-theme/tree/master/docs",
"homepage_uri" => "https://manid2.github.io/lone-wolf-theme/",
"source_code_uri" => "https://github.com/manid2/lone-wolf-theme",
}
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(assets|_(data|includes|layouts|sass)/|(LICENSE|README|CHANGELOG)((\.(txt|md|markdown)|$)))}i)
end
spec.add_runtime_dependency "jekyll", "~> 3.8"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4"
spec.add_runtime_dependency "jekyll-gist", "~> 1.5"
spec.add_runtime_dependency "jekyll-feed", "~> 0.13"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.6"
spec.add_runtime_dependency "jekyll-data", "~> 1.0"
spec.add_runtime_dependency "jemoji", "~> 0.11"
spec.add_runtime_dependency "jekyll-include-cache", "~> 0.1"
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 10.0"
end