Skip to content

Commit 66b27ed

Browse files
committed
Import
1 parent 309c81c commit 66b27ed

41 files changed

Lines changed: 5382 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
jobs:
18+
# Build job
19+
build:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@v3
24+
25+
- name: Setup Pages
26+
uses: actions/configure-pages@v3
27+
28+
- name: Setup Ruby
29+
uses: ruby/setup-ruby@v1
30+
with:
31+
ruby-version: '3.0'
32+
bundler-cache: true
33+
working-directory: www
34+
35+
- name: Build with Jekyll
36+
run: |
37+
cd www
38+
bundle install
39+
bundle exec jekyll build
40+
env:
41+
JEKYLL_ENV: production
42+
43+
- name: Upload artifact
44+
uses: actions/upload-pages-artifact@v2
45+
with:
46+
path: www/_site
47+
48+
# Deployment job
49+
deploy:
50+
environment:
51+
name: github-pages
52+
url: ${{ steps.deployment.outputs.page_url }}
53+
runs-on: ubuntu-latest
54+
needs: build
55+
steps:
56+
- name: Deploy to GitHub Pages
57+
id: deployment
58+
uses: actions/deploy-pages@v1

www/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# This file ensures GitHub Pages doesn't process the site with Jekyll's default settings

www/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ipcrypt.example.com

www/Gemfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
source "https://rubygems.org"
2+
3+
# Use GitHub Pages - this will ensure compatibility
4+
# This single gem includes Jekyll and other dependencies that are maintained by GitHub
5+
gem "github-pages", group: :jekyll_plugins
6+
7+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
8+
# and associated library.
9+
platforms :mingw, :x64_mingw, :mswin, :jruby do
10+
gem "tzinfo", "~> 1.2"
11+
gem "tzinfo-data"
12+
end
13+
14+
# Performance-booster for watching directories on Windows
15+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
16+
17+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
18+
# do not have a Java counterpart.
19+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]
20+
21+
# Needed for Ruby 3.0+
22+
gem "webrick", "~> 1.7"

www/Gemfile.lock

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

0 commit comments

Comments
 (0)