Skip to content

Commit 0e857fa

Browse files
committed
Initial commit
0 parents  commit 0e857fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+8383
-0
lines changed

.github/workflows/deploy.yml

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# On every push this script is executed
2+
3+
name: Zola build and pages deploy
4+
5+
on:
6+
push:
7+
branches: ["master"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: write
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
build:
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Checkout
29+
uses: actions/checkout@v3
30+
with:
31+
set-safe-directory: '*'
32+
- name: zola_build
33+
uses: shalzz/zola-deploy-action@master
34+
env:
35+
PAGES_BRANCH: gh-pages
36+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
# Single deploy job since we're just deploying
38+
deploy:
39+
needs: build
40+
environment:
41+
name: github-pages
42+
url: ${{ steps.deployment.outputs.page_url }}
43+
runs-on: ubuntu-latest
44+
steps:
45+
- name: Checkout
46+
uses: actions/checkout@v3
47+
with:
48+
ref: 'gh-pages'
49+
- name: Setup Pages
50+
uses: actions/configure-pages@v3
51+
- name: Upload artifact
52+
uses: actions/upload-pages-artifact@v1
53+
with:
54+
# Upload entire repository
55+
path: '.'
56+
- name: Deploy to GitHub Pages
57+
id: deployment
58+
uses: actions/deploy-pages@v2

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/public/
2+
/_site/
3+
/.idea/

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rgb.tech

Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source 'https://rubygems.org'
2+
gem 'github-pages', group: :jekyll_plugins
3+
gem 'tomlrb'

Gemfile.lock

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

0 commit comments

Comments
 (0)