-
Notifications
You must be signed in to change notification settings - Fork 2
/
haacked-theme.gemspec
24 lines (20 loc) · 1.02 KB
/
haacked-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
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "haacked-theme"
spec.version = "0.1.0"
spec.authors = ["Phil Haack"]
spec.email = ["[email protected]"]
spec.summary = "Theme based off of Minima and Greyshade used by haacked.com"
spec.homepage = "https://github.com/haacked/haacked-theme"
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.7.4"
spec.add_runtime_dependency "jekyll-feed", "~> 0.9"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1.0"
spec.add_runtime_dependency "jekyll-include-cache", "~> 0.1.0"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.2.0"
spec.add_runtime_dependency "jekyll-redirect-from", "~> 0.14.0"
spec.add_development_dependency "bundler", "~> 1.12"
spec.add_development_dependency "rake", "~> 12.3"
end