Skip to content

Commit 4188eb6

Browse files
committed
Update jekyll stuff
1 parent b2e80da commit 4188eb6

File tree

3 files changed

+110
-1
lines changed

3 files changed

+110
-1
lines changed

.gitignore

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,4 +129,15 @@ dmypy.json
129129
.pyre/
130130
.DS_Store
131131
out
132-
.vscode
132+
.vscode
133+
134+
135+
# Ignore the default location of the built site, and caches and metadata generated by Jekyll
136+
_site/
137+
.sass-cache/
138+
.jekyll-cache/
139+
.jekyll-metadata
140+
141+
# Ignore folders generated by Bundler
142+
.bundle/
143+
vendor/

docs/Gemfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source 'https://rubygems.org'
2+
3+
gem "jekyll", "~> 4.3.4" # installed by `gem jekyll`
4+
# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2
5+
6+
gem "just-the-docs", "0.10.0" # pinned to the current release
7+
# gem "just-the-docs" # always download the latest release

docs/Gemfile.lock

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
bigdecimal (3.1.8)
7+
colorator (1.1.0)
8+
concurrent-ruby (1.3.4)
9+
em-websocket (0.5.3)
10+
eventmachine (>= 0.12.9)
11+
http_parser.rb (~> 0)
12+
eventmachine (1.2.7)
13+
ffi (1.17.0-arm64-darwin)
14+
ffi (1.17.0-x86_64-linux-gnu)
15+
forwardable-extended (2.6.0)
16+
google-protobuf (4.28.1-arm64-darwin)
17+
bigdecimal
18+
rake (>= 13)
19+
google-protobuf (4.28.1-x86_64-linux)
20+
bigdecimal
21+
rake (>= 13)
22+
http_parser.rb (0.8.0)
23+
i18n (1.14.6)
24+
concurrent-ruby (~> 1.0)
25+
jekyll (4.3.4)
26+
addressable (~> 2.4)
27+
colorator (~> 1.0)
28+
em-websocket (~> 0.5)
29+
i18n (~> 1.0)
30+
jekyll-sass-converter (>= 2.0, < 4.0)
31+
jekyll-watch (~> 2.0)
32+
kramdown (~> 2.3, >= 2.3.1)
33+
kramdown-parser-gfm (~> 1.0)
34+
liquid (~> 4.0)
35+
mercenary (>= 0.3.6, < 0.5)
36+
pathutil (~> 0.9)
37+
rouge (>= 3.0, < 5.0)
38+
safe_yaml (~> 1.0)
39+
terminal-table (>= 1.8, < 4.0)
40+
webrick (~> 1.7)
41+
jekyll-include-cache (0.2.1)
42+
jekyll (>= 3.7, < 5.0)
43+
jekyll-sass-converter (3.0.0)
44+
sass-embedded (~> 1.54)
45+
jekyll-seo-tag (2.8.0)
46+
jekyll (>= 3.8, < 5.0)
47+
jekyll-watch (2.2.1)
48+
listen (~> 3.0)
49+
just-the-docs (0.10.0)
50+
jekyll (>= 3.8.5)
51+
jekyll-include-cache
52+
jekyll-seo-tag (>= 2.0)
53+
rake (>= 12.3.1)
54+
kramdown (2.4.0)
55+
rexml
56+
kramdown-parser-gfm (1.1.0)
57+
kramdown (~> 2.0)
58+
liquid (4.0.4)
59+
listen (3.9.0)
60+
rb-fsevent (~> 0.10, >= 0.10.3)
61+
rb-inotify (~> 0.9, >= 0.9.10)
62+
mercenary (0.4.0)
63+
pathutil (0.16.2)
64+
forwardable-extended (~> 2.6)
65+
public_suffix (6.0.1)
66+
rake (13.2.1)
67+
rb-fsevent (0.11.2)
68+
rb-inotify (0.11.1)
69+
ffi (~> 1.0)
70+
rexml (3.3.7)
71+
rouge (4.3.0)
72+
safe_yaml (1.0.5)
73+
sass-embedded (1.78.0-arm64-darwin)
74+
google-protobuf (~> 4.27)
75+
sass-embedded (1.78.0-x86_64-linux-gnu)
76+
google-protobuf (~> 4.27)
77+
terminal-table (3.0.2)
78+
unicode-display_width (>= 1.1.1, < 3)
79+
unicode-display_width (2.6.0)
80+
webrick (1.8.1)
81+
82+
PLATFORMS
83+
arm64-darwin
84+
x86_64-linux-gnu
85+
86+
DEPENDENCIES
87+
jekyll (~> 4.3.4)
88+
just-the-docs (= 0.10.0)
89+
90+
BUNDLED WITH
91+
2.5.9

0 commit comments

Comments
 (0)