Skip to content

Commit 422ab3d

Browse files
committed
feat: goatcounter
1 parent bd5b6e2 commit 422ab3d

File tree

31 files changed

+1306
-1270
lines changed

31 files changed

+1306
-1270
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
name: CI
2-
3-
on:
4-
push:
5-
branches: ["main"]
6-
pull_request:
7-
8-
jobs:
9-
# Build job
10-
build:
11-
runs-on: ubuntu-latest
12-
steps:
13-
- name: Checkout
14-
uses: actions/checkout@v4
15-
- name: Setup Ruby
16-
uses: ruby/setup-ruby@v1
17-
with:
18-
ruby-version: '3.3' # Not needed with a .ruby-version file
19-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
20-
cache-version: 0 # Increment this number if you need to re-download cached gems
21-
- name: Build with Jekyll
22-
run: bundle exec jekyll build
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
8+
jobs:
9+
# Build job
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
- name: Setup Ruby
16+
uses: ruby/setup-ruby@v1
17+
with:
18+
ruby-version: '3.3' # Not needed with a .ruby-version file
19+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
20+
cache-version: 0 # Increment this number if you need to re-download cached gems
21+
- name: Build with Jekyll
22+
run: bundle exec jekyll build

.github/workflows/pages.yml

Lines changed: 69 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,69 @@
1-
# This workflow uses actions that are not certified by GitHub.
2-
# They are provided by a third-party and are governed by
3-
# separate terms of service, privacy policy, and support
4-
# documentation.
5-
6-
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
7-
name: Deploy Jekyll site to Pages
8-
9-
on:
10-
push:
11-
branches: ["master"]
12-
paths: ["docs/**"]
13-
14-
# Allows you to run this workflow manually from the Actions tab
15-
workflow_dispatch:
16-
17-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
18-
permissions:
19-
contents: read
20-
pages: write
21-
id-token: write
22-
23-
# Allow one concurrent deployment
24-
concurrency:
25-
group: "pages"
26-
cancel-in-progress: true
27-
28-
jobs:
29-
# Build job
30-
build:
31-
runs-on: ubuntu-latest
32-
defaults:
33-
run:
34-
working-directory: docs
35-
steps:
36-
- name: Checkout
37-
uses: actions/checkout@v4
38-
- name: Setup Ruby
39-
uses: ruby/setup-ruby@v1
40-
with:
41-
ruby-version: '3.3' # Not needed with a .ruby-version file
42-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
43-
cache-version: 0 # Increment this number if you need to re-download cached gems
44-
working-directory: '${{ github.workspace }}/docs'
45-
- name: Setup Pages
46-
id: pages
47-
uses: actions/configure-pages@v5
48-
- name: Build with Jekyll
49-
# Outputs to the './_site' directory by default
50-
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
51-
env:
52-
JEKYLL_ENV: production
53-
- name: Upload artifact
54-
# Automatically uploads an artifact from the './_site' directory by default
55-
uses: actions/upload-pages-artifact@v3
56-
with:
57-
path: docs/_site/
58-
59-
# Deployment job
60-
deploy:
61-
environment:
62-
name: github-pages
63-
url: ${{ steps.deployment.outputs.page_url }}
64-
runs-on: ubuntu-latest
65-
needs: build
66-
steps:
67-
- name: Deploy to GitHub Pages
68-
id: deployment
69-
uses: actions/deploy-pages@v4
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
6+
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
7+
name: Deploy Jekyll site to Pages
8+
9+
on:
10+
push:
11+
branches: ["master"]
12+
paths: ["docs/**"]
13+
14+
# Allows you to run this workflow manually from the Actions tab
15+
workflow_dispatch:
16+
17+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
18+
permissions:
19+
contents: read
20+
pages: write
21+
id-token: write
22+
23+
# Allow one concurrent deployment
24+
concurrency:
25+
group: "pages"
26+
cancel-in-progress: true
27+
28+
jobs:
29+
# Build job
30+
build:
31+
runs-on: ubuntu-latest
32+
defaults:
33+
run:
34+
working-directory: docs
35+
steps:
36+
- name: Checkout
37+
uses: actions/checkout@v4
38+
- name: Setup Ruby
39+
uses: ruby/setup-ruby@v1
40+
with:
41+
ruby-version: '3.3' # Not needed with a .ruby-version file
42+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
43+
cache-version: 0 # Increment this number if you need to re-download cached gems
44+
working-directory: '${{ github.workspace }}/docs'
45+
- name: Setup Pages
46+
id: pages
47+
uses: actions/configure-pages@v5
48+
- name: Build with Jekyll
49+
# Outputs to the './_site' directory by default
50+
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
51+
env:
52+
JEKYLL_ENV: production
53+
- name: Upload artifact
54+
# Automatically uploads an artifact from the './_site' directory by default
55+
uses: actions/upload-pages-artifact@v3
56+
with:
57+
path: docs/_site/
58+
59+
# Deployment job
60+
deploy:
61+
environment:
62+
name: github-pages
63+
url: ${{ steps.deployment.outputs.page_url }}
64+
runs-on: ubuntu-latest
65+
needs: build
66+
steps:
67+
- name: Deploy to GitHub Pages
68+
id: deployment
69+
uses: actions/deploy-pages@v4

docs/Gemfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
source 'https://rubygems.org'
2-
3-
gem "jekyll", "~> 4.4.1" # installed by `gem jekyll`
4-
# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2
5-
6-
gem "just-the-docs", "0.10.1" # pinned to the current release
7-
# gem "just-the-docs" # always download the latest release
1+
source 'https://rubygems.org'
2+
3+
gem "jekyll", "~> 4.4.1" # installed by `gem jekyll`
4+
# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2
5+
6+
gem "just-the-docs", "0.10.1" # pinned to the current release
7+
# gem "just-the-docs" # always download the latest release

docs/Gemfile.lock

Lines changed: 97 additions & 97 deletions
Original file line numberDiff line numberDiff line change
@@ -1,97 +1,97 @@
1-
GEM
2-
remote: https://rubygems.org/
3-
specs:
4-
addressable (2.8.7)
5-
public_suffix (>= 2.0.2, < 7.0)
6-
base64 (0.2.0)
7-
bigdecimal (3.1.9)
8-
colorator (1.1.0)
9-
concurrent-ruby (1.3.5)
10-
csv (3.3.2)
11-
em-websocket (0.5.3)
12-
eventmachine (>= 0.12.9)
13-
http_parser.rb (~> 0)
14-
eventmachine (1.2.7)
15-
ffi (1.17.1-arm64-darwin)
16-
ffi (1.17.1-x86_64-linux-gnu)
17-
forwardable-extended (2.6.0)
18-
google-protobuf (4.29.3-arm64-darwin)
19-
bigdecimal
20-
rake (>= 13)
21-
google-protobuf (4.29.3-x86_64-linux)
22-
bigdecimal
23-
rake (>= 13)
24-
http_parser.rb (0.8.0)
25-
i18n (1.14.7)
26-
concurrent-ruby (~> 1.0)
27-
jekyll (4.4.1)
28-
addressable (~> 2.4)
29-
base64 (~> 0.2)
30-
colorator (~> 1.0)
31-
csv (~> 3.0)
32-
em-websocket (~> 0.5)
33-
i18n (~> 1.0)
34-
jekyll-sass-converter (>= 2.0, < 4.0)
35-
jekyll-watch (~> 2.0)
36-
json (~> 2.6)
37-
kramdown (~> 2.3, >= 2.3.1)
38-
kramdown-parser-gfm (~> 1.0)
39-
liquid (~> 4.0)
40-
mercenary (~> 0.3, >= 0.3.6)
41-
pathutil (~> 0.9)
42-
rouge (>= 3.0, < 5.0)
43-
safe_yaml (~> 1.0)
44-
terminal-table (>= 1.8, < 4.0)
45-
webrick (~> 1.7)
46-
jekyll-include-cache (0.2.1)
47-
jekyll (>= 3.7, < 5.0)
48-
jekyll-sass-converter (3.0.0)
49-
sass-embedded (~> 1.54)
50-
jekyll-seo-tag (2.8.0)
51-
jekyll (>= 3.8, < 5.0)
52-
jekyll-watch (2.2.1)
53-
listen (~> 3.0)
54-
json (2.9.1)
55-
just-the-docs (0.10.1)
56-
jekyll (>= 3.8.5)
57-
jekyll-include-cache
58-
jekyll-seo-tag (>= 2.0)
59-
rake (>= 12.3.1)
60-
kramdown (2.5.1)
61-
rexml (>= 3.3.9)
62-
kramdown-parser-gfm (1.1.0)
63-
kramdown (~> 2.0)
64-
liquid (4.0.4)
65-
listen (3.9.0)
66-
rb-fsevent (~> 0.10, >= 0.10.3)
67-
rb-inotify (~> 0.9, >= 0.9.10)
68-
mercenary (0.4.0)
69-
pathutil (0.16.2)
70-
forwardable-extended (~> 2.6)
71-
public_suffix (6.0.1)
72-
rake (13.2.1)
73-
rb-fsevent (0.11.2)
74-
rb-inotify (0.11.1)
75-
ffi (~> 1.0)
76-
rexml (3.4.0)
77-
rouge (4.5.1)
78-
safe_yaml (1.0.5)
79-
sass-embedded (1.83.4-arm64-darwin)
80-
google-protobuf (~> 4.29)
81-
sass-embedded (1.83.4-x86_64-linux-gnu)
82-
google-protobuf (~> 4.29)
83-
terminal-table (3.0.2)
84-
unicode-display_width (>= 1.1.1, < 3)
85-
unicode-display_width (2.6.0)
86-
webrick (1.9.1)
87-
88-
PLATFORMS
89-
arm64-darwin
90-
x86_64-linux-gnu
91-
92-
DEPENDENCIES
93-
jekyll (~> 4.4.1)
94-
just-the-docs (= 0.10.1)
95-
96-
BUNDLED WITH
97-
2.5.9
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
base64 (0.2.0)
7+
bigdecimal (3.1.9)
8+
colorator (1.1.0)
9+
concurrent-ruby (1.3.5)
10+
csv (3.3.2)
11+
em-websocket (0.5.3)
12+
eventmachine (>= 0.12.9)
13+
http_parser.rb (~> 0)
14+
eventmachine (1.2.7)
15+
ffi (1.17.1-arm64-darwin)
16+
ffi (1.17.1-x86_64-linux-gnu)
17+
forwardable-extended (2.6.0)
18+
google-protobuf (4.29.3-arm64-darwin)
19+
bigdecimal
20+
rake (>= 13)
21+
google-protobuf (4.29.3-x86_64-linux)
22+
bigdecimal
23+
rake (>= 13)
24+
http_parser.rb (0.8.0)
25+
i18n (1.14.7)
26+
concurrent-ruby (~> 1.0)
27+
jekyll (4.4.1)
28+
addressable (~> 2.4)
29+
base64 (~> 0.2)
30+
colorator (~> 1.0)
31+
csv (~> 3.0)
32+
em-websocket (~> 0.5)
33+
i18n (~> 1.0)
34+
jekyll-sass-converter (>= 2.0, < 4.0)
35+
jekyll-watch (~> 2.0)
36+
json (~> 2.6)
37+
kramdown (~> 2.3, >= 2.3.1)
38+
kramdown-parser-gfm (~> 1.0)
39+
liquid (~> 4.0)
40+
mercenary (~> 0.3, >= 0.3.6)
41+
pathutil (~> 0.9)
42+
rouge (>= 3.0, < 5.0)
43+
safe_yaml (~> 1.0)
44+
terminal-table (>= 1.8, < 4.0)
45+
webrick (~> 1.7)
46+
jekyll-include-cache (0.2.1)
47+
jekyll (>= 3.7, < 5.0)
48+
jekyll-sass-converter (3.0.0)
49+
sass-embedded (~> 1.54)
50+
jekyll-seo-tag (2.8.0)
51+
jekyll (>= 3.8, < 5.0)
52+
jekyll-watch (2.2.1)
53+
listen (~> 3.0)
54+
json (2.9.1)
55+
just-the-docs (0.10.1)
56+
jekyll (>= 3.8.5)
57+
jekyll-include-cache
58+
jekyll-seo-tag (>= 2.0)
59+
rake (>= 12.3.1)
60+
kramdown (2.5.1)
61+
rexml (>= 3.3.9)
62+
kramdown-parser-gfm (1.1.0)
63+
kramdown (~> 2.0)
64+
liquid (4.0.4)
65+
listen (3.9.0)
66+
rb-fsevent (~> 0.10, >= 0.10.3)
67+
rb-inotify (~> 0.9, >= 0.9.10)
68+
mercenary (0.4.0)
69+
pathutil (0.16.2)
70+
forwardable-extended (~> 2.6)
71+
public_suffix (6.0.1)
72+
rake (13.2.1)
73+
rb-fsevent (0.11.2)
74+
rb-inotify (0.11.1)
75+
ffi (~> 1.0)
76+
rexml (3.4.0)
77+
rouge (4.5.1)
78+
safe_yaml (1.0.5)
79+
sass-embedded (1.83.4-arm64-darwin)
80+
google-protobuf (~> 4.29)
81+
sass-embedded (1.83.4-x86_64-linux-gnu)
82+
google-protobuf (~> 4.29)
83+
terminal-table (3.0.2)
84+
unicode-display_width (>= 1.1.1, < 3)
85+
unicode-display_width (2.6.0)
86+
webrick (1.9.1)
87+
88+
PLATFORMS
89+
arm64-darwin
90+
x86_64-linux-gnu
91+
92+
DEPENDENCIES
93+
jekyll (~> 4.4.1)
94+
just-the-docs (= 0.10.1)
95+
96+
BUNDLED WITH
97+
2.5.9

0 commit comments

Comments
 (0)