File tree Expand file tree Collapse file tree 2 files changed +28
-2
lines changed Expand file tree Collapse file tree 2 files changed +28
-2
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,6 @@ gem "minima", "~> 2.5"
1414
1515
1616#gem "jekyll"
17- gem "jekyll-sitemap"
18- gem "jekyll-spaceship"
1917gem "jekyll-remote-theme" , group : :jekyll_plugins
2018# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
2119# uncomment the line below. To upgrade, run `bundle update github-pages`.
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
3+ Gem ::Specification . new do |spec |
4+ spec . name = "jekyll-theme-yat"
5+ spec . version = "1.10.0"
6+ spec . authors = [ "jeffreytse" ]
7+ spec . email = [ "[email protected] " ] 8+
9+ spec . summary = "Yet another theme for elegant writers with modern flat style and beautiful night/dark mode."
10+ spec . homepage = "https://github.com/jeffreytse/jekyll-theme-yat"
11+ spec . license = "MIT"
12+
13+ spec . metadata [ "plugin_type" ] = "theme"
14+
15+ spec . files = `git ls-files -z` . split ( "\x0 " ) . select do |f |
16+ f . match ( %r!^(assets|_data|_layouts|_includes|_sass|LICENSE|README)!i )
17+ end
18+
19+ spec . add_development_dependency "bundler" , ">= 1.6" , "< 3.0"
20+ spec . add_development_dependency "rake" , ">= 12.0" , "< 13.0"
21+
22+ spec . add_runtime_dependency "jekyll" , "> 3.5" , "< 5.0"
23+ spec . add_runtime_dependency "jekyll-feed" , "~> 0.9"
24+ spec . add_runtime_dependency "jekyll-seo-tag" , "~> 2.1"
25+ spec . add_runtime_dependency "jekyll-sitemap" , "~> 1.3"
26+ spec . add_runtime_dependency "jekyll-paginate" , "~> 1.1"
27+ spec . add_runtime_dependency "jekyll-spaceship" , "~> 0.2"
28+ end
You can’t perform that action at this time.
0 commit comments