-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjekyll-theme-blackdoc.gemspec
More file actions
27 lines (21 loc) · 956 Bytes
/
jekyll-theme-blackdoc.gemspec
File metadata and controls
27 lines (21 loc) · 956 Bytes
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
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "jekyll-theme-blackdoc"
spec.version = "2.0.1"
spec.authors = ["Karlo Espiritu"]
spec.email = ["karloespiritu@gmail.com"]
spec.summary = %q{Black Theme for Jekyll}
spec.homepage = "https://github.com/karloespiritu/BlackDoc"
spec.license = "MIT"
spec.metadata["plugin_type"] = "theme"
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(public|_(includes|layouts)/|(LICENSE|README)((\.(txt|md|markdown)|$)))}i)
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.add_runtime_dependency "jekyll", "~> 3.7"
spec.add_runtime_dependency "jekyll-gist", "~> 1.5"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
spec.add_runtime_dependency "jekyll-feed", "~> 0.6"
spec.add_development_dependency "bundler", "~> 1.12"
end