-
Notifications
You must be signed in to change notification settings - Fork 0
/
sebasic.gemspec
26 lines (20 loc) · 930 Bytes
/
sebasic.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "sebasic"
spec.version = "1.0.0"
spec.authors = ["Lewis R"]
spec.email = ["[email protected]"]
spec.summary = "A stylish, minimalistic theme for Jekyll"
spec.homepage = "https://github.com/lewisrobbins/sebasic"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.metadata = {
"source_code_uri" => "https://github.com/lewisrobbins/sebasic",
}
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.3"
spec.add_runtime_dependency "jekyll-feed", "~> 0.9"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1"
spec.add_development_dependency "bundler", "~> 2.4"
spec.add_development_dependency "rake", "~> 13.0"
end