Skip to content

Commit 8f747e9

Browse files
committed
Iniital commit
0 parents  commit 8f747e9

File tree

122 files changed

+9634
-0
lines changed

Some content is hidden

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

122 files changed

+9634
-0
lines changed

.github/workflows/jekyll.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Deploy Jekyll site to Pages
2+
3+
on:
4+
push:
5+
branches: ["master"]
6+
workflow_dispatch:
7+
permissions:
8+
contents: read
9+
pages: write
10+
id-token: write
11+
12+
concurrency:
13+
group: "pages"
14+
cancel-in-progress: false
15+
16+
jobs:
17+
build:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v3
22+
- name: Setup Ruby
23+
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
24+
with:
25+
ruby-version: '3.1'
26+
bundler-cache: true
27+
cache-version: 0 # Increment this number if you need to re-download cached gems
28+
- name: Setup Pages
29+
id: pages
30+
uses: actions/configure-pages@v3
31+
- name: Build with Jekyll
32+
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
33+
env:
34+
JEKYLL_ENV: production
35+
- name: Upload artifact
36+
uses: actions/upload-pages-artifact@v1
37+
38+
deploy:
39+
environment:
40+
name: github-pages
41+
url: ${{ steps.deployment.outputs.page_url }}
42+
runs-on: ubuntu-latest
43+
needs: build
44+
steps:
45+
- name: Deploy to GitHub Pages
46+
id: deployment
47+
uses: actions/deploy-pages@v2

.gitignore

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

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.1

404.html

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
permalink: /404.html
3+
layout: default
4+
---
5+
6+
<style type="text/css" media="screen">
7+
.container {
8+
margin: 10px auto;
9+
max-width: 600px;
10+
text-align: center;
11+
}
12+
h1 {
13+
margin: 30px 0;
14+
font-size: 4em;
15+
line-height: 1;
16+
letter-spacing: -1px;
17+
}
18+
</style>
19+
20+
<div class="container">
21+
<h1>404</h1>
22+
23+
<p><strong>Page not found :(</strong></p>
24+
<p>The requested page could not be found.</p>
25+
</div>

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cocov.dev

Gemfile

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
source "https://rubygems.org"
2+
gem "jekyll", "~> 4.3.2"
3+
gem "byebug"
4+
5+
group :jekyll_plugins do
6+
gem "jekyll-github-metadata"
7+
gem 'jekyll-redirect-from'
8+
gem 'jekyll-last-modified-at'
9+
gem 'jekyll-toc'
10+
end
11+
12+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
13+
# do not have a Java counterpart.
14+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]
15+
16+
gem "rouge", "~> 4.1"

Gemfile.lock

+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.4)
5+
public_suffix (>= 2.0.2, < 6.0)
6+
byebug (11.1.3)
7+
colorator (1.1.0)
8+
concurrent-ruby (1.2.2)
9+
em-websocket (0.5.3)
10+
eventmachine (>= 0.12.9)
11+
http_parser.rb (~> 0)
12+
eventmachine (1.2.7)
13+
eventmachine (1.2.7-java)
14+
faraday (2.7.4)
15+
faraday-net_http (>= 2.0, < 3.1)
16+
ruby2_keywords (>= 0.0.4)
17+
faraday-net_http (3.0.2)
18+
ffi (1.15.5)
19+
ffi (1.15.5-java)
20+
forwardable-extended (2.6.0)
21+
google-protobuf (3.22.3-arm64-darwin)
22+
google-protobuf (3.22.3-java)
23+
google-protobuf (3.22.3-x86_64-darwin)
24+
google-protobuf (3.22.3-x86_64-linux)
25+
http_parser.rb (0.8.0)
26+
i18n (1.13.0)
27+
concurrent-ruby (~> 1.0)
28+
jekyll (4.3.2)
29+
addressable (~> 2.4)
30+
colorator (~> 1.0)
31+
em-websocket (~> 0.5)
32+
i18n (~> 1.0)
33+
jekyll-sass-converter (>= 2.0, < 4.0)
34+
jekyll-watch (~> 2.0)
35+
kramdown (~> 2.3, >= 2.3.1)
36+
kramdown-parser-gfm (~> 1.0)
37+
liquid (~> 4.0)
38+
mercenary (>= 0.3.6, < 0.5)
39+
pathutil (~> 0.9)
40+
rouge (>= 3.0, < 5.0)
41+
safe_yaml (~> 1.0)
42+
terminal-table (>= 1.8, < 4.0)
43+
webrick (~> 1.7)
44+
jekyll-github-metadata (2.16.0)
45+
jekyll (>= 3.4, < 5.0)
46+
octokit (>= 4, < 7, != 4.4.0)
47+
jekyll-last-modified-at (1.3.0)
48+
jekyll (>= 3.7, < 5.0)
49+
posix-spawn (~> 0.3.9)
50+
jekyll-redirect-from (0.16.0)
51+
jekyll (>= 3.3, < 5.0)
52+
jekyll-sass-converter (3.0.0)
53+
sass-embedded (~> 1.54)
54+
jekyll-toc (0.18.0)
55+
jekyll (>= 3.9)
56+
nokogiri (~> 1.12)
57+
jekyll-watch (2.2.1)
58+
listen (~> 3.0)
59+
kramdown (2.4.0)
60+
rexml
61+
kramdown-parser-gfm (1.1.0)
62+
kramdown (~> 2.0)
63+
liquid (4.0.4)
64+
listen (3.8.0)
65+
rb-fsevent (~> 0.10, >= 0.10.3)
66+
rb-inotify (~> 0.9, >= 0.9.10)
67+
mercenary (0.4.0)
68+
nokogiri (1.14.3-arm64-darwin)
69+
racc (~> 1.4)
70+
nokogiri (1.14.3-java)
71+
racc (~> 1.4)
72+
nokogiri (1.14.3-x86_64-darwin)
73+
racc (~> 1.4)
74+
nokogiri (1.14.3-x86_64-linux)
75+
racc (~> 1.4)
76+
octokit (6.1.1)
77+
faraday (>= 1, < 3)
78+
sawyer (~> 0.9)
79+
pathutil (0.16.2)
80+
forwardable-extended (~> 2.6)
81+
posix-spawn (0.3.15)
82+
public_suffix (5.0.1)
83+
racc (1.6.2)
84+
racc (1.6.2-java)
85+
rake (13.0.6)
86+
rb-fsevent (0.11.2)
87+
rb-inotify (0.10.1)
88+
ffi (~> 1.0)
89+
rexml (3.2.5)
90+
rouge (4.1.0)
91+
ruby2_keywords (0.0.5)
92+
safe_yaml (1.0.5)
93+
sass-embedded (1.62.1)
94+
google-protobuf (~> 3.21)
95+
rake (>= 10.0.0)
96+
sass-embedded (1.62.1-arm64-darwin)
97+
google-protobuf (~> 3.21)
98+
sass-embedded (1.62.1-x86_64-darwin)
99+
google-protobuf (~> 3.21)
100+
sass-embedded (1.62.1-x86_64-linux-gnu)
101+
google-protobuf (~> 3.21)
102+
sawyer (0.9.2)
103+
addressable (>= 2.3.5)
104+
faraday (>= 0.17.3, < 3)
105+
terminal-table (3.0.2)
106+
unicode-display_width (>= 1.1.1, < 3)
107+
unicode-display_width (2.4.2)
108+
webrick (1.8.1)
109+
110+
PLATFORMS
111+
arm64-darwin-22
112+
java
113+
x86_64-darwin-22
114+
x86_64-linux
115+
116+
DEPENDENCIES
117+
byebug
118+
http_parser.rb (~> 0.6.0)
119+
jekyll (~> 4.3.2)
120+
jekyll-github-metadata
121+
jekyll-last-modified-at
122+
jekyll-redirect-from
123+
jekyll-toc
124+
rouge (~> 4.1)
125+
126+
BUNDLED WITH
127+
2.4.2

0 commit comments

Comments
 (0)