Skip to content

Commit 71559cd

Browse files
committed
set up local jekyll
1 parent 443c28f commit 71559cd

File tree

4 files changed

+111
-0
lines changed

4 files changed

+111
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
.vscode
22
**/*_files/
3+
4+
# local Jekyll build artifacts
5+
_site/
6+
.jekyll_cache

Gemfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'https://rubygems.org'
2+
gem 'nokogiri'
3+
gem 'rack', '~> 2.2.4'
4+
gem 'rspec'
5+
gem 'jekyll'
6+
gem 'minima'

Gemfile.lock

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.5)
5+
public_suffix (>= 2.0.2, < 6.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.2.2)
8+
diff-lcs (1.5.0)
9+
em-websocket (0.5.3)
10+
eventmachine (>= 0.12.9)
11+
http_parser.rb (~> 0)
12+
eventmachine (1.2.7)
13+
ffi (1.15.5)
14+
forwardable-extended (2.6.0)
15+
google-protobuf (3.24.2-x64-mingw-ucrt)
16+
http_parser.rb (0.8.0)
17+
i18n (1.14.1)
18+
concurrent-ruby (~> 1.0)
19+
jekyll (4.3.2)
20+
addressable (~> 2.4)
21+
colorator (~> 1.0)
22+
em-websocket (~> 0.5)
23+
i18n (~> 1.0)
24+
jekyll-sass-converter (>= 2.0, < 4.0)
25+
jekyll-watch (~> 2.0)
26+
kramdown (~> 2.3, >= 2.3.1)
27+
kramdown-parser-gfm (~> 1.0)
28+
liquid (~> 4.0)
29+
mercenary (>= 0.3.6, < 0.5)
30+
pathutil (~> 0.9)
31+
rouge (>= 3.0, < 5.0)
32+
safe_yaml (~> 1.0)
33+
terminal-table (>= 1.8, < 4.0)
34+
webrick (~> 1.7)
35+
jekyll-feed (0.17.0)
36+
jekyll (>= 3.7, < 5.0)
37+
jekyll-sass-converter (3.0.0)
38+
sass-embedded (~> 1.54)
39+
jekyll-seo-tag (2.8.0)
40+
jekyll (>= 3.8, < 5.0)
41+
jekyll-watch (2.2.1)
42+
listen (~> 3.0)
43+
kramdown (2.4.0)
44+
rexml
45+
kramdown-parser-gfm (1.1.0)
46+
kramdown (~> 2.0)
47+
liquid (4.0.4)
48+
listen (3.8.0)
49+
rb-fsevent (~> 0.10, >= 0.10.3)
50+
rb-inotify (~> 0.9, >= 0.9.10)
51+
mercenary (0.4.0)
52+
minima (2.5.1)
53+
jekyll (>= 3.5, < 5.0)
54+
jekyll-feed (~> 0.9)
55+
jekyll-seo-tag (~> 2.1)
56+
nokogiri (1.15.4-x64-mingw-ucrt)
57+
racc (~> 1.4)
58+
pathutil (0.16.2)
59+
forwardable-extended (~> 2.6)
60+
public_suffix (5.0.3)
61+
racc (1.7.1)
62+
rack (2.2.8)
63+
rb-fsevent (0.11.2)
64+
rb-inotify (0.10.1)
65+
ffi (~> 1.0)
66+
rexml (3.2.6)
67+
rouge (4.1.3)
68+
rspec (3.12.0)
69+
rspec-core (~> 3.12.0)
70+
rspec-expectations (~> 3.12.0)
71+
rspec-mocks (~> 3.12.0)
72+
rspec-core (3.12.2)
73+
rspec-support (~> 3.12.0)
74+
rspec-expectations (3.12.3)
75+
diff-lcs (>= 1.2.0, < 2.0)
76+
rspec-support (~> 3.12.0)
77+
rspec-mocks (3.12.6)
78+
diff-lcs (>= 1.2.0, < 2.0)
79+
rspec-support (~> 3.12.0)
80+
rspec-support (3.12.1)
81+
safe_yaml (1.0.5)
82+
sass-embedded (1.66.1-x64-mingw-ucrt)
83+
google-protobuf (~> 3.23)
84+
terminal-table (3.0.2)
85+
unicode-display_width (>= 1.1.1, < 3)
86+
unicode-display_width (2.4.2)
87+
webrick (1.8.1)
88+
89+
PLATFORMS
90+
x64-mingw-ucrt
91+
92+
DEPENDENCIES
93+
jekyll
94+
minima
95+
nokogiri
96+
rack (~> 2.2.4)
97+
rspec
98+
99+
BUNDLED WITH
100+
2.4.10

index.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Talks by Eli Chadwick
3+
layout: default
34
---
45

56
I like to talk about:

0 commit comments

Comments
 (0)