-
Notifications
You must be signed in to change notification settings - Fork 0
/
jekyll-theme-dusk.gemspec
24 lines (21 loc) · 1.11 KB
/
jekyll-theme-dusk.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "jekyll-theme-dusk"
spec.version = "0.5.2" # Keep this at line 5 for GitHub release action
spec.authors = ["Parmjot Singh"]
spec.email = ["[email protected]"]
spec.summary = "A dark Jekyll theme compatible with GitHub Pages, with emphasis on elegance. This theme is still in development, so expect issues."
spec.homepage = "https://github.com/Parmjot-Singh/jekyll-theme-dusk/"
spec.license = "MIT"
spec.metadata = {
"bug_tracker_uri" => "#{spec.homepage}/issues",
"documentation_uri" => spec.homepage.to_s,
"homepage_uri" => spec.homepage.to_s,
"source_code_uri" => spec.homepage.to_s,
}
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_data|_layouts|_includes|_sass|LICENSE|README|_config\.yml)!i) }
spec.platform = Gem::Platform::RUBY
spec.add_runtime_dependency "jekyll", "> 3.5", "< 5.0"
# testing
spec.add_runtime_dependency "json", "> 0.1", "< 9.9"
end