2019-07-22 02:16:23 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
Gem::Specification.new do |spec|
|
2020-09-05 04:20:42 +00:00
|
|
|
spec.version = "0.1.21"
|
2019-07-23 04:13:04 +00:00
|
|
|
|
2019-07-22 02:16:23 +00:00
|
|
|
spec.name = "jekyll-theme-isabelline"
|
|
|
|
spec.authors = ["Rouslan Zenetl"]
|
2019-09-06 14:52:14 +00:00
|
|
|
spec.email = ["isabelline@rzen.dev"]
|
|
|
|
spec.summary = "Simple clean mobile-friendly theme for long form note taking. Works for blogging too."
|
2019-07-22 02:16:23 +00:00
|
|
|
spec.homepage = "https://github.com/rzen/jekyll-theme-isabelline"
|
|
|
|
spec.license = "MIT"
|
|
|
|
spec.metadata["plugin_type"] = "theme"
|
|
|
|
|
2019-07-23 04:13:04 +00:00
|
|
|
# work out which files to include with the theme
|
2019-07-22 02:16:23 +00:00
|
|
|
spec.files = `git ls-files -z`.split("\x0").select do |f|
|
2020-09-05 04:20:42 +00:00
|
|
|
f.match(%r!^(assets|build|_(includes|layouts|sass)/|(LICENSE|README|CHANGELOG|index)((\.(txt|md|html)|$)))!i)
|
2019-07-22 02:16:23 +00:00
|
|
|
end
|
|
|
|
|
2019-09-06 14:52:14 +00:00
|
|
|
# TODO: jekyll ver should be same as image in docker-compose.yaml
|
|
|
|
spec.add_runtime_dependency "jekyll", ">= 3.5", "< 5.0"
|
2020-09-01 01:07:53 +00:00
|
|
|
spec.add_development_dependency "bundler", "~> 2.1.0"
|
2020-09-07 14:00:23 +00:00
|
|
|
end
|