mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-10-20 17:53:45 +00:00

## [7.4.0](https://github.com/cotes2020/jekyll-theme-chirpy/compare/v7.3.1...v7.4.0) (2025-10-19) ### Features * add support for embed spotify ([#2515](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2515)) ([cda62e2](cda62e28d1
)) * **i18n:** add Danish locale ([#2410](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2410)) ([f5802b8](f5802b8a8a
)) * **i18n:** add locale files for some rtl languages ([#2415](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2415)) ([18c48b4](18c48b4c49
)) ### Bug Fixes * avoid unconfigured social options in sidebar ([#2507](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2507)) ([5f8ec7f](5f8ec7ffd3
)) * correct GoatCounter pageviews extraction ([#2420](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2420)) ([c706799](c706799f9b
)) * resolve discrepancy in lqip between post and main page ([#2453](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2453)) ([1bac96a](1bac96a8e1
)) * restore blurry animation for homepage LQIP ([#2551](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2551)) ([221ca9f](221ca9f52b
)) * **search:** restore full-text search for posts with description ([#2557](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2557)) ([604528e](604528e3ce
))
36 lines
1.4 KiB
Ruby
36 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "jekyll-theme-chirpy"
|
|
spec.version = "7.4.0"
|
|
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-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
|