Skip to content

Commit 8d68ccc

Browse files
authored
Merge pull request #547 from canada-ca/chores/gemfile-update
Update Gemfile and _config.yml for compatibility and configuration improvements
2 parents dcf456e + 45e51b0 commit 8d68ccc

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

Gemfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
11
source "https://rubygems.org"
22
# gem "jekyll", "~> 4.2"
33
gem "jekyll-remote-theme", github: "benbalter/jekyll-remote-theme", branch: "master"
4+
5+
# Some stdlib libraries (logger, csv) are required by Jekyll and newer Ruby
6+
# installations may warn or fail if they're not explicitly included in the
7+
# bundle on some CI builders (Netlify's Ruby setup in particular). Include
8+
# them here so Bundler ensures a compatible copy is available during build.
9+
gem 'logger'
10+
gem 'csv'
11+
gem 'base64'
12+
gem 'bigdecimal'
13+
# Ensure rake is available for native gem builds (e.g. google-protobuf)
14+
gem 'rake', '>= 0.a'

Gemfile.lock

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@ GEM
1414
specs:
1515
addressable (2.8.1)
1616
public_suffix (>= 2.0.2, < 6.0)
17+
base64 (0.3.0)
18+
bigdecimal (3.2.2)
1719
colorator (1.1.0)
1820
concurrent-ruby (1.2.2)
21+
csv (3.3.5)
1922
em-websocket (0.5.3)
2023
eventmachine (>= 0.12.9)
2124
http_parser.rb (~> 0)
@@ -56,10 +59,12 @@ GEM
5659
listen (3.8.0)
5760
rb-fsevent (~> 0.10, >= 0.10.3)
5861
rb-inotify (~> 0.9, >= 0.9.10)
62+
logger (1.7.0)
5963
mercenary (0.4.0)
6064
pathutil (0.16.2)
6165
forwardable-extended (~> 2.6)
6266
public_suffix (5.0.1)
67+
rake (13.3.0)
6368
rb-fsevent (0.11.2)
6469
rb-inotify (0.10.1)
6570
ffi (~> 1.0)
@@ -84,7 +89,12 @@ PLATFORMS
8489
x86_64-linux
8590

8691
DEPENDENCIES
92+
base64
93+
bigdecimal
94+
csv
8795
jekyll-remote-theme!
96+
logger
97+
rake (>= 0.a)
8898

8999
BUNDLED WITH
90100
2.4.8

_config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,10 @@
8888
"lang": "en",
8989
"layout": "default",
9090
"pageclass": "cnt-wdth-lmtd",
91-
"script": "/js/gc-pg-hlpfl.js",
92-
"script": "/js/url-swap.js",
91+
"script": [
92+
"/js/gc-pg-hlpfl.js",
93+
"/js/url-swap.js"
94+
],
9395
"share": true
9496
}
9597
},

0 commit comments

Comments
 (0)