-
Notifications
You must be signed in to change notification settings - Fork 0
/
not-pure-poole.gemspec
25 lines (20 loc) · 1.05 KB
/
not-pure-poole.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 = "not-pure-poole"
spec.version = "0.1.0"
spec.authors = ["Mark Otto", "Songzi Vong"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = "A simple, beautiful, and powerful Jekyll theme for blogs."
spec.homepage = "https://github.com/vszhub/not-pure-jekyll"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README)!i) }
spec.add_runtime_dependency "jekyll", "~> 3.9"
spec.add_runtime_dependency "jekyll-feed", "~> 0.13"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.6"
spec.add_runtime_dependency "jekyll-gist", "~> 1.5"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4"
spec.add_runtime_dependency "kramdown-parser-gfm", "~> 1.1"
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 12.0"
end