-
Notifications
You must be signed in to change notification settings - Fork 0
/
itrain_blog.gemspec
29 lines (23 loc) · 1.15 KB
/
itrain_blog.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
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "jekyll-text-theme"
spec.version = "1.0.0"
spec.authors = ["isaac"]
spec.email = ["[email protected]"]
spec.summary = %q{A super customizable Jekyll theme for personal site, team site, blog, project, documentation, etc.}
spec.homepage = "https://github.com/itrainhub/itrainhub.github.io"
spec.license = "MIT"
spec.metadata["plugin_type"] = "theme"
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^((_data|_includes|_layouts|_sass|assets)/|(LICENSE|README|CHANGELOG)((\.(txt|md|markdown)|$)))}i)
end
spec.add_runtime_dependency "jekyll", ">= 3.6", "< 5.0"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.0"
spec.add_runtime_dependency "jekyll-feed", "~> 0.1"
spec.add_runtime_dependency "jemoji", "~> 0.8"
spec.add_runtime_dependency "jekyll-minifier", "~> 0.1.10"
spec.add_runtime_dependency "jekyll-last-modified-at", "~> 1.1.0"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake", "~> 12.3"
end