Skip to content

Commit 5358347

Browse files
authored
Update github-pages gem to fix kramdown issue (#121)
- Remove hard dep on jekyll - Add favicon
1 parent 029c411 commit 5358347

File tree

4 files changed

+32
-22
lines changed

4 files changed

+32
-22
lines changed

docs/Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ source "https://rubygems.org"
88
#
99
# This will help ensure the proper Jekyll version is running.
1010
# Happy Jekylling!
11-
gem "jekyll", "~> 3.8.5"
11+
# gem "jekyll", "~> 3.8.5"
1212

1313
# This is the default theme for new Jekyll sites. You may change this to anything you like.
1414
gem "minima", "~> 2.0"
1515

1616
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
1717
# uncomment the line below. To upgrade, run `bundle update github-pages`.
18-
gem "github-pages", "~> 203", group: :jekyll_plugins
18+
gem "github-pages", group: :jekyll_plugins
1919

2020
# If you have any plugins, put them here!
2121
group :jekyll_plugins do

docs/Gemfile.lock

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (6.0.3.1)
4+
activesupport (6.0.3.2)
55
concurrent-ruby (~> 1.0, >= 1.0.2)
66
i18n (>= 0.7, < 2)
77
minitest (~> 5.1)
@@ -16,9 +16,9 @@ GEM
1616
colorator (1.1.0)
1717
commonmarker (0.17.13)
1818
ruby-enum (~> 0.5)
19-
concurrent-ruby (1.1.6)
20-
dnsruby (1.61.3)
21-
addressable (~> 2.5)
19+
concurrent-ruby (1.1.7)
20+
dnsruby (1.61.4)
21+
simpleidn (~> 0.1)
2222
em-websocket (0.5.1)
2323
eventmachine (>= 0.12.9)
2424
http_parser.rb (~> 0.6.0)
@@ -31,16 +31,16 @@ GEM
3131
ffi (1.13.1)
3232
forwardable-extended (2.6.0)
3333
gemoji (3.0.1)
34-
github-pages (203)
34+
github-pages (207)
3535
github-pages-health-check (= 1.16.1)
36-
jekyll (= 3.8.5)
36+
jekyll (= 3.9.0)
3737
jekyll-avatar (= 0.7.0)
3838
jekyll-coffeescript (= 1.1.1)
3939
jekyll-commonmark-ghpages (= 0.1.6)
4040
jekyll-default-layout (= 0.1.4)
4141
jekyll-feed (= 0.13.0)
4242
jekyll-gist (= 1.5.0)
43-
jekyll-github-metadata (= 2.12.1)
43+
jekyll-github-metadata (= 2.13.0)
4444
jekyll-mentions (= 1.5.1)
4545
jekyll-optional-front-matter (= 0.3.2)
4646
jekyll-paginate (= 1.1.0)
@@ -67,33 +67,34 @@ GEM
6767
jekyll-theme-time-machine (= 0.1.1)
6868
jekyll-titles-from-headings (= 0.5.3)
6969
jemoji (= 0.11.1)
70-
kramdown (= 1.17.0)
70+
kramdown (= 2.3.0)
71+
kramdown-parser-gfm (= 1.1.0)
7172
liquid (= 4.0.3)
7273
mercenary (~> 0.3)
7374
minima (= 2.5.1)
7475
nokogiri (>= 1.10.4, < 2.0)
75-
rouge (= 3.13.0)
76+
rouge (= 3.19.0)
7677
terminal-table (~> 1.4)
7778
github-pages-health-check (1.16.1)
7879
addressable (~> 2.3)
7980
dnsruby (~> 1.60)
8081
octokit (~> 4.0)
8182
public_suffix (~> 3.0)
8283
typhoeus (~> 1.3)
83-
html-pipeline (2.13.0)
84+
html-pipeline (2.14.0)
8485
activesupport (>= 2)
8586
nokogiri (>= 1.4)
8687
http_parser.rb (0.6.0)
8788
i18n (0.9.5)
8889
concurrent-ruby (~> 1.0)
89-
jekyll (3.8.5)
90+
jekyll (3.9.0)
9091
addressable (~> 2.4)
9192
colorator (~> 1.0)
9293
em-websocket (~> 0.5)
9394
i18n (~> 0.7)
9495
jekyll-sass-converter (~> 1.0)
9596
jekyll-watch (~> 2.0)
96-
kramdown (~> 1.14)
97+
kramdown (>= 1.17, < 3)
9798
liquid (~> 4.0)
9899
mercenary (~> 0.3.3)
99100
pathutil (~> 0.9)
@@ -117,8 +118,8 @@ GEM
117118
jekyll (>= 3.7, < 5.0)
118119
jekyll-gist (1.5.0)
119120
octokit (~> 4.2)
120-
jekyll-github-metadata (2.12.1)
121-
jekyll (~> 3.4)
121+
jekyll-github-metadata (2.13.0)
122+
jekyll (>= 3.4, < 5.0)
122123
octokit (~> 4.0, != 4.4.0)
123124
jekyll-mentions (1.5.1)
124125
html-pipeline (~> 2.3)
@@ -191,7 +192,10 @@ GEM
191192
gemoji (~> 3.0)
192193
html-pipeline (~> 2.2)
193194
jekyll (>= 3.0, < 5.0)
194-
kramdown (1.17.0)
195+
kramdown (2.3.0)
196+
rexml
197+
kramdown-parser-gfm (1.1.0)
198+
kramdown (~> 2.0)
195199
liquid (4.0.3)
196200
listen (3.2.1)
197201
rb-fsevent (~> 0.10, >= 0.10.3)
@@ -204,7 +208,7 @@ GEM
204208
jekyll-seo-tag (~> 2.1)
205209
minitest (5.14.1)
206210
multipart-post (2.1.1)
207-
nokogiri (1.10.9)
211+
nokogiri (1.10.10)
208212
mini_portile2 (~> 2.4.0)
209213
octokit (4.18.0)
210214
faraday (>= 0.9)
@@ -215,7 +219,8 @@ GEM
215219
rb-fsevent (0.10.4)
216220
rb-inotify (0.10.1)
217221
ffi (~> 1.0)
218-
rouge (3.13.0)
222+
rexml (3.2.4)
223+
rouge (3.19.0)
219224
ruby-enum (0.8.0)
220225
i18n
221226
rubyzip (2.3.0)
@@ -228,6 +233,8 @@ GEM
228233
sawyer (0.8.2)
229234
addressable (>= 2.3.5)
230235
faraday (> 0.8, < 2.0)
236+
simpleidn (0.1.1)
237+
unf (~> 0.1.4)
231238
terminal-table (1.8.0)
232239
unicode-display_width (~> 1.1, >= 1.1.1)
233240
thread_safe (0.3.6)
@@ -237,16 +244,18 @@ GEM
237244
thread_safe (~> 0.1)
238245
tzinfo-data (1.2020.1)
239246
tzinfo (>= 1.0.0)
247+
unf (0.1.4)
248+
unf_ext
249+
unf_ext (0.0.7.7)
240250
unicode-display_width (1.7.0)
241251
wdm (0.1.1)
242-
zeitwerk (2.3.0)
252+
zeitwerk (2.4.0)
243253

244254
PLATFORMS
245255
ruby
246256

247257
DEPENDENCIES
248-
github-pages (~> 203)
249-
jekyll (~> 3.8.5)
258+
github-pages
250259
jekyll-feed (~> 0.6)
251260
jemoji
252261
minima (~> 2.0)

docs/_layouts/default.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<link rel="stylesheet" href="{{ '/assets/css/ie.css' | relative_url }}">
1717
<![endif]-->
1818
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
19+
<link rel="shortcut icon" type="image/png" href="{{ '/assets/images/favicon.png' | relative_url }}">
1920

2021
</head>
2122
<body>

docs/assets/images/favicon.png

560 Bytes
Loading

0 commit comments

Comments
 (0)