19 lines
693 B
Ruby
19 lines
693 B
Ruby
# frozen_string_literal: true
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "blog-theme"
|
|
spec.version = "0.1.0"
|
|
spec.authors = ["chapeau"]
|
|
spec.email = ["me@chapoline.me"]
|
|
|
|
spec.summary = "Theme for my blog"
|
|
spec.homepage = "https://chapoline.me"
|
|
spec.license = "MIT"
|
|
|
|
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_data|_layouts|_includes|_sass|LICENSE|README|_config\.yml)!i) }
|
|
|
|
spec.add_runtime_dependency "jekyll", "~> 4.3"
|
|
spec.add_runtime_dependency "jekyll-feed", "~> 0.15.0"
|
|
spec.add_runtime_dependency "rouge", "~> 3.23.0"
|
|
spec.add_runtime_dependency "webrick", "~> 1.7"
|
|
end
|