blob: 7c13cd30fe7b3f3f611e67eae992bb14a4cbd2ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = <%= theme_name.inspect %>
spec.version = "0.1.0"
spec.authors = [<%= user_name.inspect %>]
spec.email = [<%= user_email.inspect %>]
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!^(<%= theme_directories.join("|") %>|LICENSE|README|_config\.yml)!i) }
spec.add_runtime_dependency "jekyll", "~> <%= jekyll_version_with_minor %>"
end
|