Skip to content

Commit 737fe56

Browse files
authored
Merge pull request #295 from viv-codes/develop
2 parents 53647e0 + 50168eb commit 737fe56

File tree

5 files changed

+57
-35
lines changed

5 files changed

+57
-35
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ RUN bundle install
1212
COPY . /site/
1313
RUN bundle exec rake build:production
1414

15-
FROM nginx:alpine
15+
FROM docker.io/galenguyer/nginx:1.21.6-alpine-spa
1616

1717
RUN rm -rf /usr/share/nginx/html/*
18-
COPY --from=builder /site/_site/ /usr/share/nginx/html
18+
COPY --from=builder /site/_site/ /usr/share/nginx/html/
1919

Gemfile

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

1313
# This is the default theme for new Jekyll sites. You may change this to anything you like.
1414
gem "minima", "~> 2.5"
@@ -22,6 +22,7 @@ group :jekyll_plugins do
2222
gem "jekyll-feed", "~> 0.6"
2323
gem "liquid-md5"
2424
gem "jekyll-regex-replace"
25+
gem "webrick"
2526
end
2627

2728
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem

Gemfile.lock

Lines changed: 40 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,87 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.7.0)
4+
addressable (2.8.0)
55
public_suffix (>= 2.0.2, < 5.0)
66
colorator (1.1.0)
7-
concurrent-ruby (1.1.8)
8-
em-websocket (0.5.2)
7+
concurrent-ruby (1.1.10)
8+
em-websocket (0.5.3)
99
eventmachine (>= 0.12.9)
10-
http_parser.rb (~> 0.6.0)
10+
http_parser.rb (~> 0)
1111
eventmachine (1.2.7)
12-
ffi (1.15.0)
12+
ffi (1.15.5)
1313
forwardable-extended (2.6.0)
14-
http_parser.rb (0.6.0)
15-
i18n (0.9.5)
14+
http_parser.rb (0.8.0)
15+
i18n (1.10.0)
1616
concurrent-ruby (~> 1.0)
17-
jekyll (3.8.7)
17+
jekyll (4.2.2)
1818
addressable (~> 2.4)
1919
colorator (~> 1.0)
2020
em-websocket (~> 0.5)
21-
i18n (~> 0.7)
22-
jekyll-sass-converter (~> 1.0)
21+
i18n (~> 1.0)
22+
jekyll-sass-converter (~> 2.0)
2323
jekyll-watch (~> 2.0)
24-
kramdown (~> 1.14)
24+
kramdown (~> 2.3)
25+
kramdown-parser-gfm (~> 1.0)
2526
liquid (~> 4.0)
26-
mercenary (~> 0.3.3)
27+
mercenary (~> 0.4.0)
2728
pathutil (~> 0.9)
28-
rouge (>= 1.7, < 4)
29+
rouge (~> 3.0)
2930
safe_yaml (~> 1.0)
30-
jekyll-feed (0.10.0)
31-
jekyll (~> 3.3)
31+
terminal-table (~> 2.0)
32+
jekyll-feed (0.16.0)
33+
jekyll (>= 3.7, < 5.0)
3234
jekyll-regex-replace (1.1.0)
33-
jekyll-sass-converter (1.5.2)
34-
sass (~> 3.4)
35-
jekyll-seo-tag (2.7.1)
35+
jekyll-sass-converter (2.2.0)
36+
sassc (> 2.0.1, < 3.0)
37+
jekyll-seo-tag (2.8.0)
3638
jekyll (>= 3.8, < 5.0)
3739
jekyll-watch (2.2.1)
3840
listen (~> 3.0)
39-
kramdown (1.17.0)
41+
kramdown (2.4.0)
42+
rexml
43+
kramdown-parser-gfm (1.1.0)
44+
kramdown (~> 2.0)
4045
liquid (4.0.3)
4146
liquid-md5 (0.0.3)
4247
liquid (>= 2.5, < 5.0)
43-
listen (3.5.1)
48+
listen (3.7.1)
4449
rb-fsevent (~> 0.10, >= 0.10.3)
4550
rb-inotify (~> 0.9, >= 0.9.10)
46-
mercenary (0.3.6)
51+
mercenary (0.4.0)
4752
minima (2.5.1)
4853
jekyll (>= 3.5, < 5.0)
4954
jekyll-feed (~> 0.9)
5055
jekyll-seo-tag (~> 2.1)
5156
pathutil (0.16.2)
5257
forwardable-extended (~> 2.6)
53-
public_suffix (4.0.6)
58+
public_suffix (4.0.7)
5459
rake (12.3.3)
55-
rb-fsevent (0.10.4)
60+
rb-fsevent (0.11.1)
5661
rb-inotify (0.10.1)
5762
ffi (~> 1.0)
58-
rouge (3.26.0)
63+
rexml (3.2.5)
64+
rouge (3.29.0)
5965
safe_yaml (1.0.5)
60-
sass (3.7.4)
61-
sass-listen (~> 4.0.0)
62-
sass-listen (4.0.0)
63-
rb-fsevent (~> 0.9, >= 0.9.4)
64-
rb-inotify (~> 0.9, >= 0.9.7)
66+
sassc (2.4.0)
67+
ffi (~> 1.9)
68+
terminal-table (2.0.0)
69+
unicode-display_width (~> 1.1, >= 1.1.1)
70+
unicode-display_width (1.8.0)
71+
webrick (1.7.0)
6572

6673
PLATFORMS
67-
ruby
74+
x86_64-linux
6875

6976
DEPENDENCIES
70-
jekyll (~> 3.8.4)
77+
jekyll
7178
jekyll-feed (~> 0.6)
7279
jekyll-regex-replace
7380
liquid-md5
7481
minima (~> 2.5)
7582
rake (~> 12.3)
7683
tzinfo-data
84+
webrick
7785

7886
BUNDLED WITH
79-
2.2.3
87+
2.3.17

about/sponsors.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,16 @@
194194
<img class="rounded" src="https://assets.csh.rit.edu/pubsite/sponsors/tenable.png" alt="Tenable">
195195
</a>
196196
</div>
197+
<div class="col-4 col-lg-2">
198+
<a href="https://www.wayfair.com/">
199+
<img class="rounded" src="https://assets.csh.rit.edu/pubsite/sponsors/wayfair.png" alt="Wayfair">
200+
</a>
201+
</div>
202+
<div class="col-4 col-lg-2">
203+
<a href="https://www.johonnottechnologies.com/">
204+
<img class="rounded" src="https://assets.csh.rit.edu/pubsite/sponsors/johonnot.png" alt="Johonnot">
205+
</a>
206+
</div>
197207
<!-- Note: also add sponsors to sponsors.js for homepage display -->
198208
</div>
199209
</div>

assets/js/sponsors.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ $(document).ready(() => {
4545
new Sponsor('https://assets.csh.rit.edu/pubsite/sponsors/slack.png', 'https://slack.com/', 'Slack'),
4646
new Sponsor('https://assets.csh.rit.edu/pubsite/sponsors/proxmox.png', 'https://proxmox.com/', 'Proxmox'),
4747
new Sponsor('https://assets.csh.rit.edu/pubsite/sponsors/tenable.png', 'https://tenable.com/', 'Tenable'),
48+
new Sponsor('https://assets.csh.rit.edu/pubsite/sponsors/wayfair.png', 'https://wayfair.com/', 'Wayfair'),
49+
new Sponsor('https://assets.csh.rit.edu/pubsite/sponsors/johonnot.png', 'https://johonnottechnologies.com/', 'Johonnot'),
50+
4851
];
4952

5053
for (let i = 0; i <= 6; i++) {

0 commit comments

Comments
 (0)