Skip to content

Commit 3a0f8d7

Browse files
authored
Update devDependencies and gems. (#24940)
1 parent 2a12115 commit 3a0f8d7

File tree

6 files changed

+483
-457
lines changed

6 files changed

+483
-457
lines changed

Gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
22

33
group :development, :test do
44
gem 'jekyll', '~> 3.6.2'
5-
gem 'jekyll-redirect-from', '~> 0.12.1'
5+
gem 'jekyll-redirect-from', '~> 0.13.0'
66
gem 'jekyll-sitemap', '~> 1.1.1'
7-
gem 'jekyll-toc', '~> 0.4.0'
7+
gem 'jekyll-toc', '~> 0.5.0.rc'
88
end

Gemfile.lock

+11-9
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,22 @@ GEM
1818
pathutil (~> 0.9)
1919
rouge (>= 1.7, < 3)
2020
safe_yaml (~> 1.0)
21-
jekyll-redirect-from (0.12.1)
21+
jekyll-redirect-from (0.13.0)
2222
jekyll (~> 3.3)
23-
jekyll-sass-converter (1.5.0)
23+
jekyll-sass-converter (1.5.1)
2424
sass (~> 3.4)
2525
jekyll-sitemap (1.1.1)
2626
jekyll (~> 3.3)
27-
jekyll-toc (0.4.0)
27+
jekyll-toc (0.5.0.rc)
2828
nokogiri (~> 1.6)
29-
jekyll-watch (1.5.0)
30-
listen (~> 3.0, < 3.1)
31-
kramdown (1.16.1)
29+
jekyll-watch (1.5.1)
30+
listen (~> 3.0)
31+
kramdown (1.16.2)
3232
liquid (4.0.0)
33-
listen (3.0.8)
33+
listen (3.1.5)
3434
rb-fsevent (~> 0.9, >= 0.9.4)
3535
rb-inotify (~> 0.9, >= 0.9.7)
36+
ruby_dep (~> 1.2)
3637
mercenary (0.3.6)
3738
mini_portile2 (2.3.0)
3839
nokogiri (1.8.1)
@@ -46,6 +47,7 @@ GEM
4647
rb-inotify (0.9.10)
4748
ffi (>= 0.5.0, < 2)
4849
rouge (2.2.1)
50+
ruby_dep (1.5.0)
4951
safe_yaml (1.0.4)
5052
sass (3.5.3)
5153
sass-listen (~> 4.0.0)
@@ -59,9 +61,9 @@ PLATFORMS
5961

6062
DEPENDENCIES
6163
jekyll (~> 3.6.2)
62-
jekyll-redirect-from (~> 0.12.1)
64+
jekyll-redirect-from (~> 0.13.0)
6365
jekyll-sitemap (~> 1.1.1)
64-
jekyll-toc (~> 0.4.0)
66+
jekyll-toc (~> 0.5.0.rc)
6567

6668
BUNDLED WITH
6769
1.16.0

_config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,7 @@ cdn:
7474
jquery_hash: "sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
7575
popper: "https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
7676
popper_hash: "sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
77+
78+
toc:
79+
min_level: 2
80+
max_level: 4

_layouts/redirect.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
<head>
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6-
<title>Bootstrap - Content moved</title>
6+
<title>Bootstrap · Content moved</title>
77
<link rel="canonical" href="{{ page.redirect.to }}">
88
<meta http-equiv="refresh" content="0; url={{ page.redirect.to }}">
9+
<meta name="robots" content="noindex">
910
<style>
1011
html {
1112
display: flex;
@@ -30,7 +31,7 @@
3031
</style>
3132
</head>
3233
<body>
33-
<h1>Redirecting</h1>
34+
<h1>Redirecting&hellip;</h1>
3435
<a href="{{ page.redirect.to }}">Click here if you are not redirected</a>
3536
<script>window.location="{{ page.redirect.to }}";</script>
3637
</body>

0 commit comments

Comments
 (0)