mirror of
https://github.com/minoplhy/minima-dark.git
synced 2024-11-14 15:47:10 +00:00
17 lines
607 B
Ruby
17 lines
607 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Gem::Specification.new do |spec|
|
||
|
spec.name = "minima-dark"
|
||
|
spec.version = "0.1.0"
|
||
|
spec.authors = ["minoplhy"]
|
||
|
spec.email = ["zebr@m21.kylz.nl"]
|
||
|
|
||
|
spec.summary = "TODO: Write a short summary, because Rubygems requires one."
|
||
|
spec.homepage = "TODO: Put your gem's website or public repo URL here."
|
||
|
spec.license = "MIT"
|
||
|
|
||
|
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README|_config\.yml)!i) }
|
||
|
|
||
|
spec.add_runtime_dependency "jekyll", "~> 4.2"
|
||
|
end
|