-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjekyll-oceanic.gemspec
33 lines (26 loc) · 1.22 KB
/
jekyll-oceanic.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
27
28
29
30
31
32
33
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "jekyll-oceanic"
spec.version = "1.1.2"
spec.authors = ["Karl Nicoll"]
spec.email = ["karl@karlnicoll.net"]
spec.summary = "A modern, blue, template for Jekyll blogs."
spec.homepage = "https://github.com/karlnicoll/jekyll-oceanic"
spec.license = "MIT"
spec.description = <<-EOF
Oceanic is intended as a simple theme for Jekyll websites, with a main focus
on blogs.
EOF
spec.metadata = {
"bug_tracker_uri" => "https://github.com/karlnicoll/jekyll-oceanic/issues",
"documentation_uri" => "https://github.com/karlnicoll/jekyll-oceanic/blob/master/README.md",
"source_code_uri" => "https://github.com/karlnicoll/jekyll-oceanic"
}
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.17"
spec.add_runtime_dependency "jekyll-paginate-v2", "3.0"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.8"
spec.add_runtime_dependency "rouge", "4.0"
spec.add_development_dependency "bundler"
end