-
Notifications
You must be signed in to change notification settings - Fork 2
/
jekyll-theme-hydeout.gemspec
28 lines (22 loc) · 1.01 KB
/
jekyll-theme-hydeout.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
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "jekyll-theme-hydeout"
spec.version = "4.0.0"
spec.authors = ["Andrew Fong"]
spec.email = ["[email protected]"]
spec.summary = %q{The Hyde theme for Jekyll, refreshed.}
spec.homepage = "https://github.com/fongandrew/hydeout"
spec.license = "MIT"
spec.metadata["plugin_type"] = "theme"
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(assets|_(includes|layouts|sass)/|(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.4"
spec.add_runtime_dependency "jekyll-gist", "~> 1.4"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
spec.add_runtime_dependency "jekyll-feed", "~> 0.6"
spec.add_development_dependency "bundler", "~> 1.12"
spec.add_development_dependency "wdm", "~> 0.1" if Gem.win_platform?
end