-
Notifications
You must be signed in to change notification settings - Fork 199
/
jekyll-whiteglass.gemspec
33 lines (27 loc) · 1.32 KB
/
jekyll-whiteglass.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
29
30
31
32
33
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "jekyll-whiteglass"
spec.version = "1.11.7"
spec.authors = ["Chayoung You"]
spec.email = ["yousbe@gmail.com"]
spec.summary = %q{Minimal, responsive Jekyll theme for hackers.}
spec.homepage = "https://github.com/yous/whiteglass"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["bug_tracker_uri"] = "https://github.com/yous/whiteglass/issues"
spec.metadata["changelog_uri"] = "https://github.com/yous/whiteglass/blob/master/CHANGELOG.md"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(assets|_layouts|_includes|_sass|_data\/i18n\.yml|LICENSE|README|CHANGELOG)}i)
end
end
spec.add_runtime_dependency "jekyll", ">= 3.3"
spec.add_runtime_dependency "jekyll-archives", "~> 2.1"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.0"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
end