gitmoji-regex 1.0.3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +76 -5
- data/CITATION.cff +20 -0
- data/CONTRIBUTING.md +152 -39
- data/FUNDING.md +63 -0
- data/LICENSE.md +11 -0
- data/README.md +145 -266
- data/SECURITY.md +0 -1
- data/certs/pboling.pem +27 -0
- data/lib/gitmoji/regex/version.rb +2 -5
- data/lib/gitmoji/regex.rb +2 -2
- data/sig/gitmoji/regex/version.rbs +8 -0
- data/sig/gitmoji/regex.rbs +1 -0
- data.tar.gz.sig +0 -0
- metadata +140 -66
- metadata.gz.sig +0 -0
- data/LICENSE.txt +0 -21
- data/REEK +0 -0
- data/checksums/gitmoji-regex-1.0.2.gem.sha256 +0 -1
- data/checksums/gitmoji-regex-1.0.2.gem.sha512 +0 -1
- data/checksums/gitmoji-regex-1.0.3.gem.sha256 +0 -1
- data/checksums/gitmoji-regex-1.0.3.gem.sha512 +0 -1
- data/src/gitmojis.json +0 -597
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc495c654f9479e0da410c77d818dc59045ff773469e44f7d730cb7169d1e7d6
|
|
4
|
+
data.tar.gz: af914da9dd869f39fa5b83bc5d88f22c83a1c8249205dd482059898eb5606604
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e8302d62c568f578f04be8ceef7307e03667fc0b7db652c562d63631170eb1b2f2f25f60b9b1f3964cd07c23841859035c47d012049cd17b6a7a0e045e5c771
|
|
7
|
+
data.tar.gz: cd69af9267c08d6dc9cba07eede6fbbd69d1dd07463aaa5448365d17cc61d7f907195bda6ca4806e73d0a29c919d1497cabcc81765b60af290ffdb8f23f8183b
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -1,82 +1,153 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
|
|
3
|
+
[![SemVer 2.0.0][📌semver-img]][📌semver] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog]
|
|
4
|
+
|
|
2
5
|
All notable changes to this project will be documented in this file.
|
|
3
6
|
|
|
4
|
-
The format is based on [Keep a Changelog
|
|
5
|
-
and this project adheres to [Semantic Versioning
|
|
7
|
+
The format is based on [Keep a Changelog][📗keep-changelog],
|
|
8
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|
9
|
+
and [yes][📌major-versions-not-sacred], platform and engine support are part of the [public API][📌semver-breaking].
|
|
10
|
+
Please file a bug if you notice a violation of semantic versioning.
|
|
11
|
+
|
|
12
|
+
[📌semver]: https://semver.org/spec/v2.0.0.html
|
|
13
|
+
[📌semver-img]: https://img.shields.io/badge/semver-2.0.0-FFDD67.svg?style=flat
|
|
14
|
+
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
|
15
|
+
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
|
16
|
+
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
|
17
|
+
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
|
|
6
18
|
|
|
7
19
|
## [Unreleased]
|
|
20
|
+
|
|
8
21
|
### Added
|
|
22
|
+
|
|
9
23
|
### Changed
|
|
24
|
+
|
|
10
25
|
### Deprecated
|
|
26
|
+
|
|
11
27
|
### Removed
|
|
28
|
+
|
|
12
29
|
### Fixed
|
|
30
|
+
|
|
13
31
|
### Security
|
|
14
32
|
|
|
33
|
+
## [2.0.0] - 2026-05-26
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.0.0][2.0.0t]
|
|
36
|
+
- COVERAGE: 100.00% -- 58/58 lines in 3 files
|
|
37
|
+
- BRANCH COVERAGE: 100.00% -- 4/4 branches in 3 files
|
|
38
|
+
- 90.00% documented
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- New gitmoji "🦖" (`:t-rex:`) for code that adds backwards compatibility
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
|
|
46
|
+
- Documented the `bin/refresh` maintainer workflow for syncing the upstream gitmoji reference
|
|
47
|
+
|
|
48
|
+
### Removed
|
|
49
|
+
|
|
50
|
+
- Support for Ruby 2.3
|
|
51
|
+
|
|
15
52
|
## [1.0.3] - 2025-08-20
|
|
53
|
+
|
|
16
54
|
- TAG: [v1.0.3][1.0.3t]
|
|
17
55
|
- COVERAGE: 100.00% -- 57/57 lines in 3 files
|
|
18
56
|
- BRANCH COVERAGE: 100.00% -- 4/4 branches in 3 files
|
|
19
57
|
- 100.00% documented
|
|
58
|
+
|
|
20
59
|
### Added
|
|
60
|
+
|
|
21
61
|
- New gitmoji "✈️"
|
|
22
62
|
- appraisal2 for improved testing platform coverage in CI
|
|
63
|
+
|
|
23
64
|
### Changed
|
|
65
|
+
|
|
24
66
|
- gem dependencies for local development
|
|
25
67
|
- centralized logos to logos.galtzo.com
|
|
26
68
|
- scripts to enforce git commit message style
|
|
27
69
|
|
|
28
70
|
## [1.0.2] - 2023-05-30
|
|
71
|
+
|
|
29
72
|
- TAG: [v1.0.2][1.0.2t]
|
|
73
|
+
|
|
30
74
|
### Added
|
|
75
|
+
|
|
31
76
|
- New gitmoji "🧵"
|
|
32
77
|
- New gitmoji "🦺"
|
|
33
78
|
- Releases are now signed
|
|
34
79
|
- Releases now include SHA256 and SHA512 checksums
|
|
80
|
+
|
|
35
81
|
### Fixed
|
|
82
|
+
|
|
36
83
|
- 100% branch & line test coverage
|
|
84
|
+
|
|
37
85
|
### Changed
|
|
86
|
+
|
|
38
87
|
- Primary source forge moved from GitHub to [Source Hut](https://git.sr.ht/~galtzo/gitmoji-regex)
|
|
39
88
|
|
|
40
89
|
## [1.0.1] - 2022-06-24
|
|
90
|
+
|
|
41
91
|
### Added
|
|
92
|
+
|
|
42
93
|
- bin stubs for development
|
|
43
94
|
- Improved contributing guidelines
|
|
95
|
+
|
|
44
96
|
### Fixed
|
|
97
|
+
|
|
45
98
|
- Updated Template `src/regex.rb`
|
|
46
99
|
- CI Build improvements
|
|
47
100
|
|
|
48
101
|
## [1.0.0] - 2022-06-24
|
|
102
|
+
|
|
49
103
|
### Added
|
|
104
|
+
|
|
50
105
|
- New gitmoji "💸"
|
|
51
106
|
- Gitmoji::Regex::Version is introspectable
|
|
107
|
+
|
|
52
108
|
### Changed
|
|
109
|
+
|
|
53
110
|
- Gitmoji::Regex::VERSION is now Gitmoji::Regex::Version::VERSION
|
|
54
111
|
|
|
55
112
|
## [0.1.3] - 2022-03-30
|
|
113
|
+
|
|
56
114
|
### Added
|
|
115
|
+
|
|
57
116
|
- Documentation
|
|
58
117
|
- Badges
|
|
118
|
+
|
|
59
119
|
### Fixed
|
|
120
|
+
|
|
60
121
|
- Code Coverage
|
|
61
122
|
- Changelog URLs
|
|
62
123
|
|
|
63
124
|
## [0.1.2] - 2022-03-29
|
|
125
|
+
|
|
64
126
|
### Added
|
|
127
|
+
|
|
65
128
|
- Badges and Logos
|
|
66
129
|
|
|
67
130
|
## [0.1.1] - 2022-03-28
|
|
131
|
+
|
|
68
132
|
### Added
|
|
133
|
+
|
|
69
134
|
- Usage documentation
|
|
70
135
|
|
|
71
136
|
## [0.1.0] - 2022-03-28
|
|
137
|
+
|
|
72
138
|
### Added
|
|
139
|
+
|
|
73
140
|
- Initial release
|
|
74
141
|
|
|
75
|
-
[Unreleased]: https://github.com/galtzo-floss/gitmoji-regex/compare/
|
|
142
|
+
[Unreleased]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.0...HEAD
|
|
143
|
+
[2.0.0]: https://github.com/galtzo-floss/gitmoji-regex/compare/v1.0.3...v2.0.0
|
|
144
|
+
[2.0.0t]: https://github.com/galtzo-floss/gitmoji-regex/releases/tag/v2.0.0
|
|
145
|
+
[1.0.4]: https://github.com/galtzo-floss/gitmoji-regex/compare/v1.0.3...v1.0.4
|
|
146
|
+
[1.0.4t]: https://github.com/galtzo-floss/gitmoji-regex/releases/tag/v1.0.4
|
|
76
147
|
[1.0.3]: https://github.com/galtzo-floss/gitmoji-regex/compare/v1.0.2...v1.0.3
|
|
77
|
-
[1.0.3t]: https://
|
|
148
|
+
[1.0.3t]: https://github.com/galtzo-floss/gitmoji-regex/releases/tag/v1.0.3
|
|
78
149
|
[1.0.2]: https://github.com/galtzo-floss/gitmoji-regex/compare/v1.0.1...v1.0.2
|
|
79
|
-
[1.0.2t]: https://
|
|
150
|
+
[1.0.2t]: https://github.com/galtzo-floss/gitmoji-regex/releases/tag/v1.0.2
|
|
80
151
|
[1.0.1]: https://github.com/galtzo-floss/gitmoji-regex/compare/v1.0.0...v1.0.1
|
|
81
152
|
[1.0.0]: https://github.com/galtzo-floss/gitmoji-regex/compare/v0.1.3...v1.0.0
|
|
82
153
|
[0.1.3]: https://github.com/galtzo-floss/gitmoji-regex/compare/v0.1.2...v0.1.3
|
data/CITATION.cff
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
cff-version: 1.2.0
|
|
2
|
+
title: "gitmoji-regex"
|
|
3
|
+
message: >-
|
|
4
|
+
If you use this work and you want to cite it,
|
|
5
|
+
then you can use the metadata from this file.
|
|
6
|
+
type: software
|
|
7
|
+
authors:
|
|
8
|
+
- given-names: "Peter H."
|
|
9
|
+
family-names: "Boling"
|
|
10
|
+
email: "floss@galtzo.com"
|
|
11
|
+
affiliation: "galtzo.com"
|
|
12
|
+
orcid: 'https://orcid.org/0009-0008-8519-441X'
|
|
13
|
+
identifiers:
|
|
14
|
+
- type: url
|
|
15
|
+
value: 'https://github.com/galtzo-floss/gitmoji-regex'
|
|
16
|
+
description: "gitmoji-regex"
|
|
17
|
+
repository-code: 'https://github.com/galtzo-floss/gitmoji-regex'
|
|
18
|
+
abstract: >-
|
|
19
|
+
gitmoji-regex
|
|
20
|
+
license: See license file
|
data/CONTRIBUTING.md
CHANGED
|
@@ -1,56 +1,152 @@
|
|
|
1
1
|
# Contributing
|
|
2
2
|
|
|
3
|
-
Bug reports and pull requests are welcome on
|
|
3
|
+
Bug reports and pull requests are welcome on [CodeBerg][📜src-cb], [GitLab][📜src-gl], or [GitHub][📜src-gh].
|
|
4
4
|
This project should be a safe, welcoming space for collaboration, so contributors agree to adhere to
|
|
5
5
|
the [code of conduct][🤝conduct].
|
|
6
6
|
|
|
7
7
|
To submit a patch, please fork the project, create a patch with tests, and send a pull request.
|
|
8
8
|
|
|
9
|
-
Remember to [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog].
|
|
9
|
+
Remember to [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] if you make changes.
|
|
10
|
+
|
|
11
|
+
## Developer Certificate of Origin
|
|
12
|
+
|
|
13
|
+
In order to protect users of this project, we require all contributors to comply with the
|
|
14
|
+
[Developer Certificate of Origin](https://developercertificate.org/).
|
|
15
|
+
This ensures that all contributions are properly licensed and attributed.
|
|
10
16
|
|
|
11
17
|
## Help out!
|
|
12
18
|
|
|
13
|
-
Take a look at the
|
|
19
|
+
Take a look at the open issues and pull requests, or use the gem and find something to improve.
|
|
14
20
|
|
|
15
21
|
Follow these instructions:
|
|
16
22
|
|
|
17
|
-
1.
|
|
18
|
-
2.
|
|
19
|
-
3.
|
|
20
|
-
4.
|
|
21
|
-
5.
|
|
22
|
-
6.
|
|
23
|
-
7.
|
|
23
|
+
1. Join the Discord: [![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite]
|
|
24
|
+
2. Fork the repository
|
|
25
|
+
3. Create your feature branch (`git checkout -b my-new-feature`)
|
|
26
|
+
4. Make some fixes.
|
|
27
|
+
5. Commit your changes (`git commit -am 'Added some feature'`)
|
|
28
|
+
6. Push to the branch (`git push origin my-new-feature`)
|
|
29
|
+
7. Make sure to add tests for it. This is important, so it doesn't break in a future release.
|
|
30
|
+
8. Create new Pull Request.
|
|
31
|
+
9. Announce it in the channel for this org in the [Discord][✉️discord-invite]!
|
|
32
|
+
|
|
33
|
+
## Executables vs Rake tasks
|
|
34
|
+
|
|
35
|
+
Executables shipped by dependencies, such as kettle-dev, and stone_checksums, are available
|
|
36
|
+
after running `bin/setup`. These include:
|
|
37
|
+
|
|
38
|
+
- gem_checksums
|
|
39
|
+
- kettle-changelog
|
|
40
|
+
- kettle-commit-msg
|
|
41
|
+
- kettle-dev-setup
|
|
42
|
+
- kettle-dvcs
|
|
43
|
+
- kettle-pre-release
|
|
44
|
+
- kettle-readme-backers
|
|
45
|
+
- kettle-release
|
|
46
|
+
|
|
47
|
+
There are many Rake tasks available as well. You can see them by running:
|
|
48
|
+
|
|
49
|
+
```shell
|
|
50
|
+
bin/rake -T
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Code quality checks
|
|
54
|
+
|
|
55
|
+
Run the Reek task when you want a smell check that fails on current findings:
|
|
56
|
+
|
|
57
|
+
```shell
|
|
58
|
+
bin/rake reek
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Refresh the checked-in `REEK` backlog through the rake task, not by redirecting
|
|
62
|
+
the raw `reek` executable output. The rake task uses the project bundle and
|
|
63
|
+
avoids stale generated binstubs shadowing the Reek gem executable:
|
|
64
|
+
|
|
65
|
+
```shell
|
|
66
|
+
bin/rake reek:update
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Environment Variables for Local Development
|
|
70
|
+
|
|
71
|
+
Below are the primary environment variables recognized by stone_checksums (and its integrated tools). Unless otherwise noted, set boolean values to the string "true" to enable.
|
|
72
|
+
|
|
73
|
+
General/runtime
|
|
74
|
+
- DEBUG: Enable extra internal logging for this library (default: false)
|
|
75
|
+
- REQUIRE_BENCH: Enable `require_bench` to profile requires (default: false)
|
|
76
|
+
- CI: When set to true, adjusts default rake tasks toward CI behavior
|
|
77
|
+
|
|
78
|
+
Coverage (kettle-soup-cover / SimpleCov)
|
|
79
|
+
- K_SOUP_COV_DO: Enable coverage collection (default: true in `mise.toml`)
|
|
80
|
+
- K_SOUP_COV_FORMATTERS: Comma-separated list of formatters (html, xml, rcov, lcov, json, tty)
|
|
81
|
+
- K_SOUP_COV_MIN_LINE: Minimum line coverage threshold (integer, e.g., 100)
|
|
82
|
+
- K_SOUP_COV_MIN_BRANCH: Minimum branch coverage threshold (integer, e.g., 100)
|
|
83
|
+
- K_SOUP_COV_MIN_HARD: Fail the run if thresholds are not met (true/false)
|
|
84
|
+
- K_SOUP_COV_MULTI_FORMATTERS: Enable multiple formatters at once (true/false)
|
|
85
|
+
- K_SOUP_COV_OPEN_BIN: Path to browser opener for HTML (empty disables auto-open)
|
|
86
|
+
- MAX_ROWS: Limit console output rows for simplecov-console (e.g., 1)
|
|
87
|
+
Tip: When running a single spec file locally, you may want `K_SOUP_COV_MIN_HARD=false` to avoid failing thresholds for a partial run.
|
|
88
|
+
|
|
89
|
+
GitHub API and CI helpers
|
|
90
|
+
- GITHUB_TOKEN or GH_TOKEN: Token used by `ci:act` and release workflow checks to query GitHub Actions status at higher rate limits
|
|
91
|
+
|
|
92
|
+
Releasing and signing
|
|
93
|
+
- SKIP_GEM_SIGNING: If set, skip gem signing during build/release
|
|
94
|
+
- GEM_CERT_USER: Username for selecting your public cert in `certs/<USER>.pem` (defaults to $USER)
|
|
95
|
+
- SOURCE_DATE_EPOCH: Reproducible build timestamp.
|
|
96
|
+
- `kettle-release` will set this automatically for the session.
|
|
97
|
+
- Not needed on bundler >= 2.7.0, as reproducible builds have become the default.
|
|
98
|
+
|
|
99
|
+
Git hooks and commit message helpers (exe/kettle-commit-msg)
|
|
100
|
+
- GIT_HOOK_BRANCH_VALIDATE: Branch name validation mode (e.g., `jira`) or `false` to disable
|
|
101
|
+
- GIT_HOOK_FOOTER_APPEND: Append a footer to commit messages when goalie allows (true/false)
|
|
102
|
+
- GIT_HOOK_FOOTER_SENTINEL: Required when footer append is enabled — a unique first-line sentinel to prevent duplicates
|
|
103
|
+
- GIT_HOOK_FOOTER_APPEND_DEBUG: Extra debug output in the footer template (true/false)
|
|
104
|
+
|
|
105
|
+
For a quick starting point, this repository’s `mise.toml` defines the shared defaults, and `.env.local` can override them locally. Copy `.env.local.example` to `.env.local`, use `KEY=value` lines, and either activate `mise` in your shell or run commands through `mise exec -C /path/to/project -- ...`.
|
|
24
106
|
|
|
25
107
|
## Appraisals
|
|
26
108
|
|
|
27
|
-
From time to time the
|
|
109
|
+
From time to time the [appraisal2][🚎appraisal2] gemfiles in `gemfiles/` will need to be updated.
|
|
110
|
+
Generated appraisal and CI workflow floors are controlled by `ruby.test_minimum`
|
|
111
|
+
in `.kettle-jem.yml`; this project was templated with `ruby.test_minimum: 2.4`.
|
|
112
|
+
That value describes the lowest Ruby version expected to run the test/development
|
|
113
|
+
toolchain, and it may be higher than the gemspec runtime floor.
|
|
114
|
+
|
|
28
115
|
They are created and updated with the commands:
|
|
29
116
|
|
|
30
117
|
```console
|
|
31
118
|
bin/rake appraisal:update
|
|
32
119
|
```
|
|
33
120
|
|
|
34
|
-
|
|
121
|
+
If you need to reset all gemfiles/*.gemfile.lock files:
|
|
122
|
+
|
|
123
|
+
```console
|
|
124
|
+
bin/rake appraisal:reset
|
|
125
|
+
```
|
|
35
126
|
|
|
36
|
-
|
|
127
|
+
When adding an appraisal to CI, check the [runner tool cache][🏃♂️runner-tool-cache] to see which runner to use.
|
|
37
128
|
|
|
38
|
-
|
|
129
|
+
## Run Tests
|
|
39
130
|
|
|
40
|
-
|
|
131
|
+
Run tests via `kettle-test` (provided by `kettle-test`). It runs RSpec, writes the full log to
|
|
132
|
+
`tmp/kettle-test/rspec-TIMESTAMP.log`, and prints a compact highlight block with timing, seed,
|
|
133
|
+
pass/fail count, failing example list, and SimpleCov coverage percentages.
|
|
41
134
|
|
|
42
135
|
```console
|
|
43
|
-
bundle exec
|
|
136
|
+
bundle exec kettle-test
|
|
44
137
|
```
|
|
45
138
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
To run all tests
|
|
139
|
+
For targeted runs, disable the hard coverage threshold to avoid false failures:
|
|
49
140
|
|
|
50
141
|
```console
|
|
51
|
-
bundle exec
|
|
142
|
+
K_SOUP_COV_MIN_HARD=false bundle exec kettle-test spec/path/to/spec.rb
|
|
52
143
|
```
|
|
53
144
|
|
|
145
|
+
### Spec organization (required)
|
|
146
|
+
|
|
147
|
+
- One spec file per class/module. For each class or module under `lib/`, keep all of its unit tests in a single spec file under `spec/` that mirrors the path and file name exactly: `lib/gitmoji/regex/my_class.rb` -> `spec/gitmoji/regex/my_class_spec.rb`.
|
|
148
|
+
- Exception: Integration specs that intentionally span multiple classes. Place these under `spec/integration/` (or a clearly named integration folder), and do not directly mirror a single class. Name them after the scenario, not a class.
|
|
149
|
+
|
|
54
150
|
## Lint It
|
|
55
151
|
|
|
56
152
|
Run all the default tasks, which includes running the gradually autocorrecting linter, `rubocop-gradual`.
|
|
@@ -72,7 +168,7 @@ For more detailed information about using RuboCop in this project, please see th
|
|
|
72
168
|
Never add `# rubocop:disable ...` / `# rubocop:enable ...` comments to code or specs (except when following the few existing `rubocop:disable` patterns for a rule already being disabled elsewhere in the code). Instead:
|
|
73
169
|
|
|
74
170
|
- Prefer configuration-based exclusions when a rule should not apply to certain paths or files (e.g., via `.rubocop.yml`).
|
|
75
|
-
- When a violation is temporary and you plan to fix it later, record it in `.rubocop_gradual.lock` using the gradual workflow:
|
|
171
|
+
- When a violation is temporary, and you plan to fix it later, record it in `.rubocop_gradual.lock` using the gradual workflow:
|
|
76
172
|
- `bundle exec rake rubocop_gradual:autocorrect` (preferred)
|
|
77
173
|
- `bundle exec rake rubocop_gradual:force_update` (only when you cannot fix the violations immediately)
|
|
78
174
|
|
|
@@ -92,46 +188,61 @@ Also see GitLab Contributors: [https://gitlab.com/galtzo-floss/gitmoji-regex/-/g
|
|
|
92
188
|
|
|
93
189
|
### One-time, Per-maintainer, Setup
|
|
94
190
|
|
|
95
|
-
**IMPORTANT**:
|
|
96
|
-
|
|
191
|
+
**IMPORTANT**: To sign a build,
|
|
192
|
+
a public key for signing gems will need to be picked up by the line in the
|
|
97
193
|
`gemspec` defining the `spec.cert_chain` (check the relevant ENV variables there).
|
|
98
|
-
All releases
|
|
194
|
+
All releases are signed releases.
|
|
99
195
|
See: [RubyGems Security Guide][🔒️rubygems-security-guide]
|
|
100
196
|
|
|
101
|
-
NOTE: To build without signing the gem
|
|
197
|
+
NOTE: To build without signing the gem set `SKIP_GEM_SIGNING` to any value in the environment.
|
|
102
198
|
|
|
103
199
|
### To release a new version:
|
|
104
200
|
|
|
201
|
+
#### Automated process
|
|
202
|
+
|
|
203
|
+
1. Update version.rb to contain the correct version-to-be-released.
|
|
204
|
+
2. Run `bundle exec kettle-changelog`.
|
|
205
|
+
3. Run `bundle exec kettle-release`.
|
|
206
|
+
4. Stay awake and monitor the release process for any errors, and answer any prompts.
|
|
207
|
+
|
|
208
|
+
#### Manual process
|
|
209
|
+
|
|
105
210
|
1. Run `bin/setup && bin/rake` as a "test, coverage, & linting" sanity check
|
|
106
211
|
2. Update the version number in `version.rb`, and ensure `CHANGELOG.md` reflects changes
|
|
107
212
|
3. Run `bin/setup && bin/rake` again as a secondary check, and to update `Gemfile.lock`
|
|
108
|
-
4. Run `
|
|
109
|
-
5. Run `git
|
|
213
|
+
4. Run `bin/rake yard` to regenerate the docs site using the canonical docs task
|
|
214
|
+
5. Run `git commit -am "🔖 Prepare release v<VERSION>"` to commit the changes
|
|
215
|
+
6. Run `git push` to trigger the final CI pipeline before release, and merge PRs
|
|
110
216
|
- NOTE: Remember to [check the build][🧪build].
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
217
|
+
7. Run `export GIT_TRUNK_BRANCH_NAME="$(git remote show origin | grep 'HEAD branch' | cut -d ' ' -f5)" && echo $GIT_TRUNK_BRANCH_NAME`
|
|
218
|
+
8. Run `git checkout $GIT_TRUNK_BRANCH_NAME`
|
|
219
|
+
9. Run `git pull origin $GIT_TRUNK_BRANCH_NAME` to ensure latest trunk code
|
|
220
|
+
10. Optional for older Bundler (< 2.7.0): Set `SOURCE_DATE_EPOCH` so `rake build` and `rake release` use the same timestamp and generate the same checksums
|
|
221
|
+
- If your Bundler is >= 2.7.0, you can skip this; builds are reproducible by default.
|
|
115
222
|
- Run `export SOURCE_DATE_EPOCH=$EPOCHSECONDS && echo $SOURCE_DATE_EPOCH`
|
|
116
223
|
- If the echo above has no output, then it didn't work.
|
|
117
224
|
- Note: `zsh/datetime` module is needed, if running `zsh`.
|
|
118
225
|
- In older versions of `bash` you can use `date +%s` instead, i.e. `export SOURCE_DATE_EPOCH=$(date +%s) && echo $SOURCE_DATE_EPOCH`
|
|
119
|
-
|
|
120
|
-
|
|
226
|
+
11. Run `bundle exec rake build`
|
|
227
|
+
12. Run `bin/gem_checksums` (more context [1][🔒️rubygems-checksums-pr], [2][🔒️rubygems-guides-pr])
|
|
121
228
|
to create SHA-256 and SHA-512 checksums. This functionality is provided by the `stone_checksums`
|
|
122
229
|
[gem][💎stone_checksums].
|
|
123
230
|
- The script automatically commits but does not push the checksums
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
231
|
+
13. Sanity check the SHA256, comparing with the output from the `bin/gem_checksums` command:
|
|
232
|
+
- `sha256sum pkg/<gem name>-<version>.gem`
|
|
233
|
+
14. Run `bundle exec rake release` which will create a git tag for the version,
|
|
234
|
+
push git commits and tags, and push the `.gem` file to the gem host configured in the gemspec.
|
|
235
|
+
|
|
236
|
+
[📜src-gl]: https://gitlab.com/galtzo-floss/gitmoji-regex/-/tree/main/gems/gitmoji-regex
|
|
237
|
+
[📜src-cb]: https://codeberg.org/galtzo-floss/gitmoji-regex/src/branch/main/gems/gitmoji-regex
|
|
238
|
+
[📜src-gh]: https://github.com/galtzo-floss/gitmoji-regex/tree/main/gems/gitmoji-regex
|
|
128
239
|
[🧪build]: https://github.com/galtzo-floss/gitmoji-regex/actions
|
|
129
|
-
[🤝conduct]: https://
|
|
240
|
+
[🤝conduct]: https://github.com/galtzo-floss/gitmoji-regex/blob/main/CODE_OF_CONDUCT.md
|
|
130
241
|
[🖐contrib-rocks]: https://contrib.rocks
|
|
131
242
|
[🖐contributors]: https://github.com/galtzo-floss/gitmoji-regex/graphs/contributors
|
|
132
243
|
[🚎contributors-gl]: https://gitlab.com/galtzo-floss/gitmoji-regex/-/graphs/main
|
|
133
244
|
[🖐contributors-img]: https://contrib.rocks/image?repo=galtzo-floss/gitmoji-regex
|
|
134
|
-
[💎
|
|
245
|
+
[💎gem-coop]: https://gem.coop
|
|
135
246
|
[🔒️rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
|
|
136
247
|
[🔒️rubygems-checksums-pr]: https://github.com/rubygems/rubygems/pull/6022
|
|
137
248
|
[🔒️rubygems-guides-pr]: https://github.com/rubygems/guides/pull/325
|
|
@@ -140,4 +251,6 @@ NOTE: To build without signing the gem you must set `SKIP_GEM_SIGNING` to some v
|
|
|
140
251
|
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
|
|
141
252
|
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
|
142
253
|
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
|
254
|
+
[🚎appraisal2]: https://github.com/appraisal-rb/appraisal2
|
|
143
255
|
[🏃♂️runner-tool-cache]: https://github.com/ruby/ruby-builder/releases/tag/toolcache
|
|
256
|
+
[✉️discord-invite]: https://discord.gg/3qme4XHNKN
|
data/FUNDING.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
<!-- RELEASE-NOTES-FOOTER-START -->
|
|
2
|
+
|
|
3
|
+
Official Discord 👉️ [![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite]
|
|
4
|
+
|
|
5
|
+
Many paths lead to being a sponsor or a backer of this project. Are you on such a path?
|
|
6
|
+
|
|
7
|
+
[![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal]
|
|
8
|
+
|
|
9
|
+
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS efforts using Patreon][🖇patreon-img]][🖇patreon]
|
|
10
|
+
|
|
11
|
+
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
|
|
12
|
+
[⛳liberapay]: https://liberapay.com/pboling/donate
|
|
13
|
+
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
14
|
+
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
15
|
+
[🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
|
|
16
|
+
[🖇polar]: https://polar.sh/pboling
|
|
17
|
+
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
|
18
|
+
[🖇kofi]: https://ko-fi.com/pboling
|
|
19
|
+
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
|
20
|
+
[🖇patreon]: https://patreon.com/galtzo
|
|
21
|
+
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
|
22
|
+
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
|
23
|
+
[🖇paypal-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=flat&logo=paypal
|
|
24
|
+
[🖇paypal]: https://www.paypal.com/paypalme/peterboling
|
|
25
|
+
[✉️discord-invite]: https://discord.gg/3qme4XHNKN
|
|
26
|
+
[✉️discord-invite-img]: https://img.shields.io/discord/1373797679469170758?style=flat
|
|
27
|
+
|
|
28
|
+
<!-- RELEASE-NOTES-FOOTER-END -->
|
|
29
|
+
|
|
30
|
+
# 🤑 A request for help
|
|
31
|
+
|
|
32
|
+
Maintainers have teeth and need to pay their dentists.
|
|
33
|
+
After getting laid off in an RIF in March, and encountering difficulty finding a new one,
|
|
34
|
+
I began spending most of my time building open source tools.
|
|
35
|
+
I'm hoping to be able to pay for my kids' health insurance this month,
|
|
36
|
+
so if you value the work I am doing, I need your support.
|
|
37
|
+
Please consider sponsoring me or the project.
|
|
38
|
+
|
|
39
|
+
To join the community or get help 👇️ Join the Discord.
|
|
40
|
+
|
|
41
|
+
[![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite]
|
|
42
|
+
|
|
43
|
+
To say "thanks!" ☝️ Join the Discord or 👇️ send money.
|
|
44
|
+
|
|
45
|
+
[![Sponsor me on GitHub Sponsors][🖇sponsor-bottom-img]][🖇sponsor] 💌 [![Sponsor me on Liberapay][⛳liberapay-bottom-img]][⛳liberapay] 💌 [![Donate on PayPal][🖇paypal-bottom-img]][🖇paypal]
|
|
46
|
+
|
|
47
|
+
# Another Way to Support Open Source Software
|
|
48
|
+
|
|
49
|
+
I’m driven by a passion to foster a thriving open-source community – a space where people can tackle complex problems, no matter how small. Revitalizing libraries that have fallen into disrepair, and building new libraries focused on solving real-world challenges, are my passions. I was recently affected by layoffs, and the tech jobs market is unwelcoming. I’m reaching out here because your support would significantly aid my efforts to provide for my family, and my farm (11 🐔 chickens, 2 🐶 dogs, 3 🐰 rabbits, 8 🐈 cats).
|
|
50
|
+
|
|
51
|
+
If you work at a company that uses my work, please encourage them to support me as a corporate sponsor. My work on gems you use might show up in `bundle fund`.
|
|
52
|
+
|
|
53
|
+
I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed to empower open-source developers like myself to get paid for the work we do, in a sustainable way. Please give it a look.
|
|
54
|
+
|
|
55
|
+
**[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
|
|
56
|
+
|
|
57
|
+
[⛳liberapay-bottom-img]: https://img.shields.io/liberapay/goal/pboling.svg?style=for-the-badge&logo=liberapay&color=a51611
|
|
58
|
+
[🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
|
|
59
|
+
[🖇buyme-img]: https://img.buymeacoffee.com/button-api/?text=Buy%20me%20a%20latte&emoji=&slug=pboling&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff
|
|
60
|
+
[🖇paypal-bottom-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=for-the-badge&logo=paypal&color=0A0A0A
|
|
61
|
+
[🖇floss-funding.dev]: https://floss-funding.dev
|
|
62
|
+
[🖇floss-funding-gem]: https://github.com/galtzo-floss/floss_funding
|
|
63
|
+
[✉️discord-invite-img-ftb]: https://img.shields.io/discord/1373797679469170758?style=for-the-badge
|
data/LICENSE.md
ADDED