2021-01-23 16:14:31 +03:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
Gem::Specification.new do |spec|
|
|
|
|
spec.name = "jekyll-theme-chirpy"
|
2022-11-22 16:08:47 +03:00
|
|
|
spec.version = "5.3.2"
|
2021-01-23 16:14:31 +03:00
|
|
|
spec.authors = ["Cotes Chung"]
|
|
|
|
spec.email = ["cotes.chung@gmail.com"]
|
|
|
|
|
|
|
|
spec.summary = "Chirpy is a minimal, sidebar, responsive web design Jekyll theme that focuses on text presentation."
|
2021-01-28 18:38:34 +03:00
|
|
|
spec.homepage = "https://github.com/cotes2020/jekyll-theme-chirpy"
|
2021-01-23 16:14:31 +03:00
|
|
|
spec.license = "MIT"
|
|
|
|
|
|
|
|
spec.files = `git ls-files -z`.split("\x0").select { |f|
|
2022-10-01 11:12:45 +03:00
|
|
|
f.match(%r!^((_(includes|layouts|sass|data)|assets)\/|README|LICENSE)!i)
|
2021-01-23 16:14:31 +03:00
|
|
|
}
|
|
|
|
|
2021-01-28 18:38:34 +03:00
|
|
|
spec.metadata = {
|
|
|
|
"bug_tracker_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy/issues",
|
2022-03-04 18:18:56 +03:00
|
|
|
"documentation_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy/#readme",
|
2021-01-28 18:38:34 +03:00
|
|
|
"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"
|
|
|
|
}
|
|
|
|
|
2022-12-27 16:43:43 +03:00
|
|
|
spec.required_ruby_version = [">= 2.5", "< 3.2"]
|
2021-06-23 18:00:46 +03:00
|
|
|
|
2022-12-27 16:43:43 +03:00
|
|
|
spec.add_runtime_dependency "jekyll", "~> 4.3"
|
2021-01-23 16:14:31 +03:00
|
|
|
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.7"
|
|
|
|
spec.add_runtime_dependency "jekyll-archives", "~> 2.2"
|
|
|
|
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4"
|
|
|
|
|
|
|
|
end
|