forked from pages-themes/primer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjekyll-theme-primer.gemspec
26 lines (21 loc) · 991 Bytes
/
jekyll-theme-primer.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 |s|
s.name = "jekyll-theme-primer"
s.version = "0.6.0"
s.authors = ["GitHub, Inc."]
s.email = ["[email protected]"]
s.homepage = "https://github.com/pages-themes/jekyll-theme-primer"
s.summary = "Primer is a Jekyll theme for GitHub Pages based on GitHub's Primer styles"
s.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md)|$)))}i)
end
s.platform = Gem::Platform::RUBY
s.license = "MIT"
s.required_ruby_version = ">= 2.4.0"
s.add_dependency "jekyll", "> 3.5", "< 5.0"
s.add_runtime_dependency "jekyll-github-metadata", "~> 2.9"
s.add_runtime_dependency "jekyll-seo-tag", "~> 2.0"
s.add_development_dependency "html-proofer", "~> 3.0"
s.add_development_dependency "rubocop-github", "~> 0.16"
s.add_development_dependency "w3c_validators", "~> 1.3"
end