Skip to content

Commit a8e7485

Browse files
committedApr 26, 2024·
Initial commit
0 parents  commit a8e7485

18 files changed

+1387
-0
lines changed
 

‎.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
_site
2+
.sass-cache
3+
.jekyll-cache
4+
.jekyll-metadata
5+
vendor
6+
.ruby-version
7+
_site

‎Gemfile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# frozen_string_literal: true
2+
3+
source 'https://rubygems.org'
4+
# Hello! This is where you manage which Jekyll version is used to run.
5+
# When you want to use a different version, change it below, save the
6+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
7+
#
8+
# bundle exec jekyll serve
9+
#
10+
# This will help ensure the proper Jekyll version is running.
11+
# Happy Jekylling!
12+
# If you want to use GitHub Pages, remove the 'gem 'jekyll'' above and
13+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
14+
gem 'github-pages', group: :jekyll_plugins
15+
16+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
17+
# and associated library.
18+
platforms :mingw, :x64_mingw, :mswin, :jruby do
19+
gem 'tzinfo', '~> 1.2'
20+
gem 'tzinfo-data'
21+
end
22+
23+
# Performance-booster for watching directories on Windows
24+
gem 'wdm', '~> 0.1.1', platforms: %i[mingw x64_mingw mswin]
25+
26+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
27+
# do not have a Java counterpart.
28+
gem 'http_parser.rb', '~> 0.6.0', platforms: [:jruby]
29+
30+
gem 'webrick', '~> 1.7'

‎Gemfile.lock

+276
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,276 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activesupport (7.1.3.2)
5+
base64
6+
bigdecimal
7+
concurrent-ruby (~> 1.0, >= 1.0.2)
8+
connection_pool (>= 2.2.5)
9+
drb
10+
i18n (>= 1.6, < 2)
11+
minitest (>= 5.1)
12+
mutex_m
13+
tzinfo (~> 2.0)
14+
addressable (2.8.6)
15+
public_suffix (>= 2.0.2, < 6.0)
16+
base64 (0.2.0)
17+
bigdecimal (3.1.7)
18+
coffee-script (2.4.1)
19+
coffee-script-source
20+
execjs
21+
coffee-script-source (1.12.2)
22+
colorator (1.1.0)
23+
commonmarker (0.23.10)
24+
concurrent-ruby (1.2.3)
25+
connection_pool (2.4.1)
26+
dnsruby (1.72.1)
27+
simpleidn (~> 0.2.1)
28+
drb (2.2.1)
29+
em-websocket (0.5.3)
30+
eventmachine (>= 0.12.9)
31+
http_parser.rb (~> 0)
32+
ethon (0.16.0)
33+
ffi (>= 1.15.0)
34+
eventmachine (1.2.7)
35+
execjs (2.9.1)
36+
faraday (2.9.0)
37+
faraday-net_http (>= 2.0, < 3.2)
38+
faraday-net_http (3.1.0)
39+
net-http
40+
ffi (1.16.3)
41+
forwardable-extended (2.6.0)
42+
gemoji (4.1.0)
43+
github-pages (231)
44+
github-pages-health-check (= 1.18.2)
45+
jekyll (= 3.9.5)
46+
jekyll-avatar (= 0.8.0)
47+
jekyll-coffeescript (= 1.2.2)
48+
jekyll-commonmark-ghpages (= 0.4.0)
49+
jekyll-default-layout (= 0.1.5)
50+
jekyll-feed (= 0.17.0)
51+
jekyll-gist (= 1.5.0)
52+
jekyll-github-metadata (= 2.16.1)
53+
jekyll-include-cache (= 0.2.1)
54+
jekyll-mentions (= 1.6.0)
55+
jekyll-optional-front-matter (= 0.3.2)
56+
jekyll-paginate (= 1.1.0)
57+
jekyll-readme-index (= 0.3.0)
58+
jekyll-redirect-from (= 0.16.0)
59+
jekyll-relative-links (= 0.6.1)
60+
jekyll-remote-theme (= 0.4.3)
61+
jekyll-sass-converter (= 1.5.2)
62+
jekyll-seo-tag (= 2.8.0)
63+
jekyll-sitemap (= 1.4.0)
64+
jekyll-swiss (= 1.0.0)
65+
jekyll-theme-architect (= 0.2.0)
66+
jekyll-theme-cayman (= 0.2.0)
67+
jekyll-theme-dinky (= 0.2.0)
68+
jekyll-theme-hacker (= 0.2.0)
69+
jekyll-theme-leap-day (= 0.2.0)
70+
jekyll-theme-merlot (= 0.2.0)
71+
jekyll-theme-midnight (= 0.2.0)
72+
jekyll-theme-minimal (= 0.2.0)
73+
jekyll-theme-modernist (= 0.2.0)
74+
jekyll-theme-primer (= 0.6.0)
75+
jekyll-theme-slate (= 0.2.0)
76+
jekyll-theme-tactile (= 0.2.0)
77+
jekyll-theme-time-machine (= 0.2.0)
78+
jekyll-titles-from-headings (= 0.5.3)
79+
jemoji (= 0.13.0)
80+
kramdown (= 2.4.0)
81+
kramdown-parser-gfm (= 1.1.0)
82+
liquid (= 4.0.4)
83+
mercenary (~> 0.3)
84+
minima (= 2.5.1)
85+
nokogiri (>= 1.13.6, < 2.0)
86+
rouge (= 3.30.0)
87+
terminal-table (~> 1.4)
88+
github-pages-health-check (1.18.2)
89+
addressable (~> 2.3)
90+
dnsruby (~> 1.60)
91+
octokit (>= 4, < 8)
92+
public_suffix (>= 3.0, < 6.0)
93+
typhoeus (~> 1.3)
94+
html-pipeline (2.14.3)
95+
activesupport (>= 2)
96+
nokogiri (>= 1.4)
97+
http_parser.rb (0.8.0)
98+
i18n (1.14.4)
99+
concurrent-ruby (~> 1.0)
100+
jekyll (3.9.5)
101+
addressable (~> 2.4)
102+
colorator (~> 1.0)
103+
em-websocket (~> 0.5)
104+
i18n (>= 0.7, < 2)
105+
jekyll-sass-converter (~> 1.0)
106+
jekyll-watch (~> 2.0)
107+
kramdown (>= 1.17, < 3)
108+
liquid (~> 4.0)
109+
mercenary (~> 0.3.3)
110+
pathutil (~> 0.9)
111+
rouge (>= 1.7, < 4)
112+
safe_yaml (~> 1.0)
113+
jekyll-avatar (0.8.0)
114+
jekyll (>= 3.0, < 5.0)
115+
jekyll-coffeescript (1.2.2)
116+
coffee-script (~> 2.2)
117+
coffee-script-source (~> 1.12)
118+
jekyll-commonmark (1.4.0)
119+
commonmarker (~> 0.22)
120+
jekyll-commonmark-ghpages (0.4.0)
121+
commonmarker (~> 0.23.7)
122+
jekyll (~> 3.9.0)
123+
jekyll-commonmark (~> 1.4.0)
124+
rouge (>= 2.0, < 5.0)
125+
jekyll-default-layout (0.1.5)
126+
jekyll (>= 3.0, < 5.0)
127+
jekyll-feed (0.17.0)
128+
jekyll (>= 3.7, < 5.0)
129+
jekyll-gist (1.5.0)
130+
octokit (~> 4.2)
131+
jekyll-github-metadata (2.16.1)
132+
jekyll (>= 3.4, < 5.0)
133+
octokit (>= 4, < 7, != 4.4.0)
134+
jekyll-include-cache (0.2.1)
135+
jekyll (>= 3.7, < 5.0)
136+
jekyll-mentions (1.6.0)
137+
html-pipeline (~> 2.3)
138+
jekyll (>= 3.7, < 5.0)
139+
jekyll-optional-front-matter (0.3.2)
140+
jekyll (>= 3.0, < 5.0)
141+
jekyll-paginate (1.1.0)
142+
jekyll-readme-index (0.3.0)
143+
jekyll (>= 3.0, < 5.0)
144+
jekyll-redirect-from (0.16.0)
145+
jekyll (>= 3.3, < 5.0)
146+
jekyll-relative-links (0.6.1)
147+
jekyll (>= 3.3, < 5.0)
148+
jekyll-remote-theme (0.4.3)
149+
addressable (~> 2.0)
150+
jekyll (>= 3.5, < 5.0)
151+
jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0)
152+
rubyzip (>= 1.3.0, < 3.0)
153+
jekyll-sass-converter (1.5.2)
154+
sass (~> 3.4)
155+
jekyll-seo-tag (2.8.0)
156+
jekyll (>= 3.8, < 5.0)
157+
jekyll-sitemap (1.4.0)
158+
jekyll (>= 3.7, < 5.0)
159+
jekyll-swiss (1.0.0)
160+
jekyll-theme-architect (0.2.0)
161+
jekyll (> 3.5, < 5.0)
162+
jekyll-seo-tag (~> 2.0)
163+
jekyll-theme-cayman (0.2.0)
164+
jekyll (> 3.5, < 5.0)
165+
jekyll-seo-tag (~> 2.0)
166+
jekyll-theme-dinky (0.2.0)
167+
jekyll (> 3.5, < 5.0)
168+
jekyll-seo-tag (~> 2.0)
169+
jekyll-theme-hacker (0.2.0)
170+
jekyll (> 3.5, < 5.0)
171+
jekyll-seo-tag (~> 2.0)
172+
jekyll-theme-leap-day (0.2.0)
173+
jekyll (> 3.5, < 5.0)
174+
jekyll-seo-tag (~> 2.0)
175+
jekyll-theme-merlot (0.2.0)
176+
jekyll (> 3.5, < 5.0)
177+
jekyll-seo-tag (~> 2.0)
178+
jekyll-theme-midnight (0.2.0)
179+
jekyll (> 3.5, < 5.0)
180+
jekyll-seo-tag (~> 2.0)
181+
jekyll-theme-minimal (0.2.0)
182+
jekyll (> 3.5, < 5.0)
183+
jekyll-seo-tag (~> 2.0)
184+
jekyll-theme-modernist (0.2.0)
185+
jekyll (> 3.5, < 5.0)
186+
jekyll-seo-tag (~> 2.0)
187+
jekyll-theme-primer (0.6.0)
188+
jekyll (> 3.5, < 5.0)
189+
jekyll-github-metadata (~> 2.9)
190+
jekyll-seo-tag (~> 2.0)
191+
jekyll-theme-slate (0.2.0)
192+
jekyll (> 3.5, < 5.0)
193+
jekyll-seo-tag (~> 2.0)
194+
jekyll-theme-tactile (0.2.0)
195+
jekyll (> 3.5, < 5.0)
196+
jekyll-seo-tag (~> 2.0)
197+
jekyll-theme-time-machine (0.2.0)
198+
jekyll (> 3.5, < 5.0)
199+
jekyll-seo-tag (~> 2.0)
200+
jekyll-titles-from-headings (0.5.3)
201+
jekyll (>= 3.3, < 5.0)
202+
jekyll-watch (2.2.1)
203+
listen (~> 3.0)
204+
jemoji (0.13.0)
205+
gemoji (>= 3, < 5)
206+
html-pipeline (~> 2.2)
207+
jekyll (>= 3.0, < 5.0)
208+
kramdown (2.4.0)
209+
rexml
210+
kramdown-parser-gfm (1.1.0)
211+
kramdown (~> 2.0)
212+
liquid (4.0.4)
213+
listen (3.9.0)
214+
rb-fsevent (~> 0.10, >= 0.10.3)
215+
rb-inotify (~> 0.9, >= 0.9.10)
216+
mercenary (0.3.6)
217+
minima (2.5.1)
218+
jekyll (>= 3.5, < 5.0)
219+
jekyll-feed (~> 0.9)
220+
jekyll-seo-tag (~> 2.1)
221+
minitest (5.22.3)
222+
mutex_m (0.2.0)
223+
net-http (0.4.1)
224+
uri
225+
nokogiri (1.16.4-x86_64-linux)
226+
racc (~> 1.4)
227+
octokit (4.25.1)
228+
faraday (>= 1, < 3)
229+
sawyer (~> 0.9)
230+
pathutil (0.16.2)
231+
forwardable-extended (~> 2.6)
232+
public_suffix (5.0.5)
233+
racc (1.7.3)
234+
rb-fsevent (0.11.2)
235+
rb-inotify (0.10.1)
236+
ffi (~> 1.0)
237+
rexml (3.2.6)
238+
rouge (3.30.0)
239+
rubyzip (2.3.2)
240+
safe_yaml (1.0.5)
241+
sass (3.7.4)
242+
sass-listen (~> 4.0.0)
243+
sass-listen (4.0.0)
244+
rb-fsevent (~> 0.9, >= 0.9.4)
245+
rb-inotify (~> 0.9, >= 0.9.7)
246+
sawyer (0.9.2)
247+
addressable (>= 2.3.5)
248+
faraday (>= 0.17.3, < 3)
249+
simpleidn (0.2.1)
250+
unf (~> 0.1.4)
251+
terminal-table (1.8.0)
252+
unicode-display_width (~> 1.1, >= 1.1.1)
253+
typhoeus (1.4.1)
254+
ethon (>= 0.9.0)
255+
tzinfo (2.0.6)
256+
concurrent-ruby (~> 1.0)
257+
unf (0.1.4)
258+
unf_ext
259+
unf_ext (0.0.9.1)
260+
unicode-display_width (1.8.0)
261+
uri (0.13.0)
262+
webrick (1.8.1)
263+
264+
PLATFORMS
265+
x86_64-linux
266+
267+
DEPENDENCIES
268+
github-pages
269+
http_parser.rb (~> 0.6.0)
270+
tzinfo (~> 1.2)
271+
tzinfo-data
272+
wdm (~> 0.1.1)
273+
webrick (~> 1.7)
274+
275+
BUNDLED WITH
276+
2.4.5

0 commit comments

Comments
 (0)
Please sign in to comment.