File tree Expand file tree Collapse file tree 7 files changed +60
-5
lines changed Expand file tree Collapse file tree 7 files changed +60
-5
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+
3
+ enableGlobDot : true
4
+
5
+ patterns :
6
+ - name : GithubUser
7
+ pattern : /\[@.+\]/gmx
8
+
9
+ languageSettings :
10
+ - languageId : markdown
11
+ ignoreRegExpList :
12
+ - Email
13
+ - GithubUser
14
+
15
+ words :
16
+ - autoreleasing
17
+ - gitter
18
+ - trotsenko
19
+ - vladislav
20
+ - bestwebua
21
+ - codebases
22
+ - dockerhub
23
+ - dockerized
24
+ - healthcheck
25
+ - truemail
26
+ - lefthook
27
+ - commitspell
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ skip_output:
6
6
7
7
linters :
8
8
commands :
9
+ commitspell :
10
+ run : .circleci/scripts/commitspell.sh -c '.circleci/linter_configs/.commitspell.yml'
9
11
cspell :
10
12
run : cspell-cli lint -c '.circleci/linter_configs/.cspell.yml' '**/*.{txt,md}'
11
13
markdownlint :
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ set -e
3
+
4
+ configuration=$( if [ " $2 " = " " ]; then echo " $2 " ; else echo " $1 $2 " ; fi)
5
+ latest_commit=$( git rev-parse HEAD)
6
+
7
+ spellcheck_info () {
8
+ echo " Checking the spelling of the latest commit ($latest_commit ) message..."
9
+ }
10
+
11
+ compose_cspell_command () {
12
+ echo " cspell-cli lint stdin$configuration "
13
+ }
14
+
15
+ cspell=" $( compose_cspell_command) "
16
+
17
+ spellcheck_latest_commit () {
18
+ git log -1 --pretty=%B | $cspell
19
+ }
20
+
21
+ spellcheck_info
22
+ spellcheck_latest_commit
Original file line number Diff line number Diff line change 2
2
3
3
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) , and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
4
4
5
+ ## [ 0.10.0] - 2024-03-02
6
+
7
+ ### Switch to truemail-rack 0.10.0
8
+
5
9
## [ 0.9.0] - 2023-11-02
6
10
7
11
### Switch to truemail-rack 0.9.0
Original file line number Diff line number Diff line change 1
- FROM ruby:3.2 .0-alpine as Builder
1
+ FROM ruby:3.3 .0-alpine as Builder
2
2
ENV APP_HOME="/var/lib/truemail-rack" \
3
3
TMP="/var/lib/truemail-rack/tmp"
4
4
RUN apk add --virtual build-dependencies git && \
5
5
git clone https://github.com/truemail-rb/truemail-rack.git $TMP -q && \
6
- cd $TMP && git checkout v0.9 .0 -q && \
6
+ cd $TMP && git checkout v0.10 .0 -q && \
7
7
mv app config config.ru .ruby-version Gemfile* $APP_HOME && rm -rf $TMP && \
8
8
apk del build-dependencies
9
9
WORKDIR $APP_HOME
@@ -15,7 +15,7 @@ RUN apk add --virtual build-dependencies make cmake g++ && \
15
15
find /usr/local/bundle/gems/ -regex ".*\. [coh]" -delete && \
16
16
apk del build-dependencies
17
17
18
- FROM ruby:3.2 .0-alpine
18
+ FROM ruby:3.3 .0-alpine
19
19
ENV INFO="Truemail lightweight rack based web API 🚀" \
20
20
APP_USER="truemail" \
21
21
APP_HOME="/var/lib/truemail-rack" \
Original file line number Diff line number Diff line change 1
1
The MIT License (MIT)
2
2
3
- Copyright (c) 2020-2023 Vladislav Trotsenko
3
+ Copyright (c) 2020-2024 Vladislav Trotsenko
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ version: "3.7"
39
39
40
40
services :
41
41
truemail :
42
- image : truemail/truemail-rack:v0.9 .0 # for latest version you can use just truemail/truemail-rack:latest
42
+ image : truemail/truemail-rack:v0.10 .0 # for latest version you can use just truemail/truemail-rack:latest
43
43
ports :
44
44
- 9292:9292
45
45
environment :
You can’t perform that action at this time.
0 commit comments