- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-docs.gemspec
More file actions
Latest commit
29 lines (24 loc) · 1020 Bytes
/
Copy pathgithub-docs.gemspec
File metadata and controls
29 lines (24 loc) · 1020 Bytes
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
# frozen_string_literal: true
Gem::Specification.newdo |s|
s.name='github-docs'
s.version='0.1.1'
s.authors=['Ricky Boyce']
s.email=['example@email.com']
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").selectdo |f|
f.match(%r{^(assets|_includes|_layouts|_sass|readme)}i)
end
# see versions: https://pages.github.com/versions
# Currently using ruby: 2.7.3
# Currently using gem: 3.1.6
# Currently using bundler: 2.1.4
s.add_development_dependency'bundler',"~> 2.0"
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"
end