-
Notifications
You must be signed in to change notification settings - Fork 0
/
jekyll-theme-quark.gemspec
28 lines (22 loc) · 1.16 KB
/
jekyll-theme-quark.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "jekyll-theme-quarkyll"
spec.version = "0.1.0"
spec.authors = ["drupix"]
spec.email = ["[email protected]"]
spec.summary = "A simple Jekyll theme based on Quark for Grav CMS."
spec.homepage = "https://github.com/drupix/jekyll-theme-quarkyll"
spec.license = "MIT"
spec.metadata["plugin_type"] = "theme"
# spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README|_config\.yml)!i) }
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.7", "<= 4.2"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.3"
spec.add_runtime_dependency "jekyll-gist", "~> 1.5"
# spec.add_runtime_dependency "jekyll-feed", "~> 0.1"
# spec.add_runtime_dependency "jekyll-include-cache", "~> 0.1"
spec.add_development_dependency "bundler", '~> 2.1', '>= 2.1.4'
spec.add_development_dependency "rake", "12.3.3"
end