7630356a94
## [7.2.1](https://github.com/cotes2020/jekyll-theme-chirpy/compare/v7.2.0...v7.2.1) (2024-12-05) ### Bug Fixes * **build:** exclude `purgecss.js` from output files ([#2090](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2090)) ([976e1a1
](976e1a184b
)) * correct the import condition for theme script ([#2075](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2075)) ([a16aa7d
](a16aa7d41e
)) * ensure pageviews are fetched after DOM is loaded ([#2071](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2071)) ([b4019f3
](b4019f3517
)) * **toc:** resume fade up animation in desktop mode ([#2085](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2085)) ([8280adb
](8280adb901
))
36 lines
1.5 KiB
Ruby
36 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "jekyll-theme-chirpy"
|
|
spec.version = "7.2.1"
|
|
spec.authors = ["Cotes Chung"]
|
|
spec.email = ["cotes.chung@gmail.com"]
|
|
|
|
spec.summary = "A minimal, responsive, and feature-rich Jekyll theme for technical writing."
|
|
spec.homepage = "https://github.com/cotes2020/jekyll-theme-chirpy"
|
|
spec.license = "MIT"
|
|
|
|
spec.files = `git ls-files -z`.split("\x0").select { |f|
|
|
f.match(%r!^((_(includes|layouts|sass|(data\/(locales|origin)))|assets)\/|README|LICENSE)!i)
|
|
}
|
|
|
|
spec.metadata = {
|
|
"bug_tracker_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy/issues",
|
|
"documentation_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy/#readme",
|
|
"homepage_uri" => "https://cotes2020.github.io/chirpy-demo",
|
|
"source_code_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy",
|
|
"wiki_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy/wiki",
|
|
"plugin_type" => "theme"
|
|
}
|
|
|
|
spec.required_ruby_version = "~> 3.1"
|
|
|
|
spec.add_runtime_dependency "jekyll", "~> 4.3"
|
|
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
|
|
spec.add_runtime_dependency "jekyll-redirect-from", "~> 0.16"
|
|
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.8"
|
|
spec.add_runtime_dependency "jekyll-archives", "~> 2.2"
|
|
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4"
|
|
spec.add_runtime_dependency "jekyll-include-cache", "~> 0.2"
|
|
|
|
end
|