Skip to content

Commit 865584e

Browse files
committed
ci: Add Gemfile
1 parent 01ba3ad commit 865584e

File tree

3 files changed

+87
-0
lines changed

3 files changed

+87
-0
lines changed

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,14 @@ _site
5050
.sass-cache
5151
_seq
5252
npm-debug.log
53+
54+
55+
# Bundle specific
56+
.bundle/
57+
vendor/bundle/
58+
59+
# Jekyll specific
60+
_site/
61+
.sass-cache/
62+
.jekyll-cache/
63+
.jekyll-metadata

Gemfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
source "https://rubygems.org"
3+
4+
gem "jekyll", "4.2.0" # Ensure this matches the version you need
5+
gem "webrick" # Necessary if you're using Ruby 3.0.0+

Gemfile.lock

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.3.3)
8+
em-websocket (0.5.3)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0)
11+
eventmachine (1.2.7)
12+
ffi (1.17.0)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.8.0)
15+
i18n (1.14.5)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (4.2.0)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (~> 1.0)
22+
jekyll-sass-converter (~> 2.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 2.3)
25+
kramdown-parser-gfm (~> 1.0)
26+
liquid (~> 4.0)
27+
mercenary (~> 0.4.0)
28+
pathutil (~> 0.9)
29+
rouge (~> 3.0)
30+
safe_yaml (~> 1.0)
31+
terminal-table (~> 2.0)
32+
jekyll-sass-converter (2.2.0)
33+
sassc (> 2.0.1, < 3.0)
34+
jekyll-watch (2.2.1)
35+
listen (~> 3.0)
36+
kramdown (2.4.0)
37+
rexml
38+
kramdown-parser-gfm (1.1.0)
39+
kramdown (~> 2.0)
40+
liquid (4.0.4)
41+
listen (3.9.0)
42+
rb-fsevent (~> 0.10, >= 0.10.3)
43+
rb-inotify (~> 0.9, >= 0.9.10)
44+
mercenary (0.4.0)
45+
pathutil (0.16.2)
46+
forwardable-extended (~> 2.6)
47+
public_suffix (5.1.1)
48+
rb-fsevent (0.11.2)
49+
rb-inotify (0.11.1)
50+
ffi (~> 1.0)
51+
rexml (3.3.1)
52+
strscan
53+
rouge (3.30.0)
54+
safe_yaml (1.0.5)
55+
sassc (2.4.0)
56+
ffi (~> 1.9)
57+
strscan (3.1.0)
58+
terminal-table (2.0.0)
59+
unicode-display_width (~> 1.1, >= 1.1.1)
60+
unicode-display_width (1.8.0)
61+
webrick (1.8.1)
62+
63+
PLATFORMS
64+
ruby
65+
66+
DEPENDENCIES
67+
jekyll (= 4.2.0)
68+
webrick
69+
70+
BUNDLED WITH
71+
1.17.2

0 commit comments

Comments
 (0)