-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub-docs.gemspec
26 lines (21 loc) · 921 Bytes
/
github-docs.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 = 'github-docs'
s.version = '0.1.0'
s.authors = ['Ricky Boyce']
s.email = ['[email protected]']
s.homepage = 'https://github.com/boycce/github-docs'
s.summary = "A Jekyll theme for Github styled documentation"
s.license = 'MIT'
s.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(assets|_includes|_layouts|_sass|readme)}i)
end
# see versions: https://pages.github.com/versions
s.add_runtime_dependency 'jekyll', "3.9.0"
s.add_runtime_dependency 'jekyll-github-metadata', "2.13.0"
s.add_runtime_dependency 'jekyll-seo-tag', "2.7.1"
s.add_runtime_dependency 'kramdown-parser-gfm', "1.1.0"
s.add_runtime_dependency 'rouge', "3.26.0"
s.add_runtime_dependency 'jekyll-sass-converter', "1.5.2"
s.add_development_dependency 'bundler', "~> 2.0"
end