gitmoji-regex 2.0.2 → 2.0.3
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 +24 -4
- data/CONTRIBUTING.md +2 -2
- data/FUNDING.md +1 -5
- data/README.md +44 -17
- data/lib/gitmoji/regex/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +13 -13
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a6fcb35ced4005c86ca3a64b645314cabbc929deca68306a1a102e44d060997e
|
|
4
|
+
data.tar.gz: 86a57ae9dffebaad76614ce8ca719456a2a287ed1707ccfb149ddcf226d45950
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1596f8c9dcfe8d3a763fefc607ede5743513c086b1eb17264de2369e4c245ec9d118940c21490d4c069d4258a9a01ee4bf05c7ac8fae239b8150013e08edbeb4
|
|
7
|
+
data.tar.gz: 0a9cc71b3b6f80ddc378094ef220190aa93f416decdef2b4f4ff076207256f87c7f56565b2e9fc77af3ebad8ccbabbb769e873a5816c0661cacb31aaeac092f6
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -22,9 +22,6 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
22
22
|
|
|
23
23
|
### Changed
|
|
24
24
|
|
|
25
|
-
- Corrected the kettle-jem template profile from package-only to full
|
|
26
|
-
standalone templating so generated workflows are refreshed by retemplating.
|
|
27
|
-
|
|
28
25
|
### Deprecated
|
|
29
26
|
|
|
30
27
|
### Removed
|
|
@@ -33,6 +30,25 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
33
30
|
|
|
34
31
|
### Security
|
|
35
32
|
|
|
33
|
+
## [2.0.3] - 2026-06-22
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.0.3][2.0.3t]
|
|
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
|
+
- Added support for JRuby 10.1 and TruffleRuby 34.0.
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
|
|
46
|
+
- Retemplated project metadata and CI/development automation with `kettle-jem` v7.0.0.
|
|
47
|
+
|
|
48
|
+
### Fixed
|
|
49
|
+
|
|
50
|
+
- Corrected RubyGems homepage metadata to point at the gem documentation site.
|
|
51
|
+
|
|
36
52
|
## [2.0.2] - 2026-06-14
|
|
37
53
|
|
|
38
54
|
- TAG: [v2.0.2][2.0.2t]
|
|
@@ -48,6 +64,8 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
48
64
|
|
|
49
65
|
- Refreshed kettle-jem-managed project files, raising the `kettle-dev`
|
|
50
66
|
development dependency floor to 2.2.9.
|
|
67
|
+
- Corrected the kettle-jem template profile from package-only to full
|
|
68
|
+
standalone templating so generated workflows are refreshed by retemplating.
|
|
51
69
|
|
|
52
70
|
## [2.0.1] - 2026-05-31
|
|
53
71
|
|
|
@@ -176,7 +194,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
176
194
|
|
|
177
195
|
- Initial release
|
|
178
196
|
|
|
179
|
-
[Unreleased]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.
|
|
197
|
+
[Unreleased]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.3...HEAD
|
|
198
|
+
[2.0.3]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.2...v2.0.3
|
|
199
|
+
[2.0.3t]: https://github.com/galtzo-floss/gitmoji-regex/releases/tag/v2.0.3
|
|
180
200
|
[2.0.2]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.1...v2.0.2
|
|
181
201
|
[2.0.2t]: https://github.com/galtzo-floss/gitmoji-regex/releases/tag/v2.0.2
|
|
182
202
|
[2.0.1]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.0...v2.0.1
|
data/CONTRIBUTING.md
CHANGED
|
@@ -109,14 +109,14 @@ Git diff driver setup
|
|
|
109
109
|
- Git hosting forges generally ignore external diff drivers, so pull request views may still show raw textual diffs even when local `git diff` uses semantic drivers.
|
|
110
110
|
|
|
111
111
|
```console
|
|
112
|
-
K_JEM_TEMPLATING=true
|
|
112
|
+
K_JEM_TEMPLATING=true kettle-jem install
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
Troubleshooting Git diffs
|
|
116
116
|
- Use `git diff --no-ext-diff` to compare against Git's built-in diff output.
|
|
117
117
|
- Use `git diff --no-textconv` when a textconv projection obscures the raw file bytes you need to inspect.
|
|
118
118
|
- If Git reports a missing `smorg-*` executable, rerun `bundle install` and the setup command above, then check `git config --local --get-regexp '^diff\.smorg-'`.
|
|
119
|
-
- To remove managed local entries, run `K_JEM_TEMPLATING=true
|
|
119
|
+
- To remove managed local entries, run `K_JEM_TEMPLATING=true kettle-jem install --undo`; remove global command registrations with `git config --global --unset-all diff.smorg-ruby.command`.
|
|
120
120
|
|
|
121
121
|
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 -- ...`.
|
|
122
122
|
|
data/FUNDING.md
CHANGED
|
@@ -6,7 +6,7 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
|
|
|
6
6
|
|
|
7
7
|
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal]
|
|
8
8
|
|
|
9
|
-
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate
|
|
9
|
+
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
10
10
|
|
|
11
11
|
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
|
|
12
12
|
[⛳liberapay]: https://liberapay.com/pboling/donate
|
|
@@ -16,12 +16,8 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
|
|
|
16
16
|
[🖇osc-sponsors-i]: https://opencollective.com/galtzo-floss/sponsors/badge.svg?style=flat
|
|
17
17
|
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
18
18
|
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
19
|
-
[🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
|
|
20
|
-
[🖇polar]: https://polar.sh/pboling
|
|
21
19
|
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
|
22
20
|
[🖇kofi]: https://ko-fi.com/pboling
|
|
23
|
-
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
|
24
|
-
[🖇patreon]: https://patreon.com/galtzo
|
|
25
21
|
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
|
26
22
|
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
|
27
23
|
[🖇paypal-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=flat&logo=paypal
|
data/README.md
CHANGED
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
|
|
11
11
|
`if ci_badges.map(&:color).all? { it == "green"}` 👇️ send money so I can do more of this. FLOSS maintenance is now my full-time job.
|
|
12
12
|
|
|
13
|
-
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate
|
|
13
|
+
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
14
14
|
|
|
15
|
-
<details>
|
|
15
|
+
<details markdown="1">
|
|
16
16
|
<summary>👣 How will this project approach the September 2025 hostile takeover of RubyGems? 🚑️</summary>
|
|
17
17
|
|
|
18
18
|
I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-takeover-of-rubygems-my-thoughts-5hlo).
|
|
@@ -45,9 +45,9 @@ or extract leading gitmoji from strings.
|
|
|
45
45
|
|
|
46
46
|
| Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
|
|
47
47
|
|-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
48
|
-
| Works with JRuby | [![JRuby 9.2 Compat][💎jruby-9.2i]][🚎jruby-9.2-wf] [![JRuby 9.3 Compat][💎jruby-9.3i]][🚎jruby-9.3-wf] <br/> [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎jruby-9.4-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
|
|
49
|
-
| Works with Truffle Ruby | [![Truffle Ruby 22.3 Compat][💎truby-22.3i]][🚎truby-22.3-wf] [![Truffle Ruby 23.0 Compat][💎truby-23.0i]][🚎truby-23.0-wf] [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎truby-23.1-wf] <br/> [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf]|
|
|
50
|
-
| Works with MRI Ruby 4 | [![Ruby
|
|
48
|
+
| Works with JRuby | [![JRuby 9.2 Compat][💎jruby-9.2i]][🚎jruby-9.2-wf] [![JRuby 9.3 Compat][💎jruby-9.3i]][🚎jruby-9.3-wf] <br/> [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎jruby-9.4-wf] [![JRuby 10.0 Compat][💎jruby-10.0i]][🚎jruby-10.0-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
|
|
49
|
+
| Works with Truffle Ruby | [![Truffle Ruby 22.3 Compat][💎truby-22.3i]][🚎truby-22.3-wf] [![Truffle Ruby 23.0 Compat][💎truby-23.0i]][🚎truby-23.0-wf] [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎truby-23.1-wf] <br/> [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby 33.0 Compat][💎truby-33.0i]][🚎truby-33.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf] [![Truffle Ruby HEAD Compat][💎truby-headi]][🚎3-hd-wf]|
|
|
50
|
+
| Works with MRI Ruby 4 | [![Ruby current Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf]|
|
|
51
51
|
| Works with MRI Ruby 3 | [![Ruby 3.0 Compat][💎ruby-3.0i]][🚎ruby-3.0-wf] [![Ruby 3.1 Compat][💎ruby-3.1i]][🚎ruby-3.1-wf] [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎ruby-3.2-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎ruby-3.3-wf] [![Ruby 3.4 Compat][💎ruby-3.4i]][🚎ruby-3.4-wf]|
|
|
52
52
|
| Works with MRI Ruby 2 | [![Ruby 2.4 Compat][💎ruby-2.4i]][🚎ruby-2.4-wf] [![Ruby 2.5 Compat][💎ruby-2.5i]][🚎ruby-2.5-wf] [![Ruby 2.6 Compat][💎ruby-2.6i]][🚎ruby-2.6-wf] [![Ruby 2.7 Compat][💎ruby-2.7i]][🚎ruby-2.7-wf]|
|
|
53
53
|
| Support & Community | [![Join Me on Daily.dev's RubyFriends][✉️ruby-friends-img]][✉️ruby-friends] [![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite] [![Get help from me on Upwork][👨🏼🏫expsup-upwork-img]][👨🏼🏫expsup-upwork] [![Get help from me on Codementor][👨🏼🏫expsup-codementor-img]][👨🏼🏫expsup-codementor] |
|
|
@@ -66,9 +66,25 @@ This test floor is configured by `ruby.test_minimum` in `.kettle-jem.yml` and
|
|
|
66
66
|
may be higher than the gem's runtime compatibility floor when legacy Rubies are
|
|
67
67
|
not practical for the current toolchain.
|
|
68
68
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
69
|
+
<a href="https://github.com/kettle-dev"><img alt="kettle-dev Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/kettle-dev/avatar-128px.svg" width="14%" align="right"/></a>
|
|
70
|
+
|
|
71
|
+
The _amazing_ test matrix is powered by the kettle-dev stack.
|
|
72
|
+
|
|
73
|
+
<details markdown="1">
|
|
74
|
+
<summary>How kettle-dev manages complexity in tests</summary>
|
|
75
|
+
|
|
76
|
+
| Gem | Source | Role | Daily download rank |
|
|
77
|
+
|-----|--------|------|---------------------|
|
|
78
|
+
| [appraisal2](https://bestgems.org/gems/appraisal2) | [GitHub](https://github.com/appraisal-rb/appraisal2) | multi-dependency Appraisal matrix generation | [](https://bestgems.org/gems/appraisal2) |
|
|
79
|
+
| [appraisal2-rubocop](https://bestgems.org/gems/appraisal2-rubocop) | [GitHub](https://github.com/appraisal-rb/appraisal2-rubocop) | RuboCop Appraisal generator integration | [](https://bestgems.org/gems/appraisal2-rubocop) |
|
|
80
|
+
| [kettle-dev](https://bestgems.org/gems/kettle-dev) | [GitHub](https://github.com/kettle-dev/kettle-dev) | development, release, and CI workflow tooling | [](https://bestgems.org/gems/kettle-dev) |
|
|
81
|
+
| [kettle-jem](https://bestgems.org/gems/kettle-jem) | [GitHub](https://github.com/kettle-dev/kettle-jem) | Appraisals & CI workflow templates | [](https://bestgems.org/gems/kettle-jem) |
|
|
82
|
+
| [kettle-soup-cover](https://bestgems.org/gems/kettle-soup-cover) | [GitHub](https://github.com/kettle-dev/kettle-soup-cover) | SimpleCov coverage policy and reporting | [](https://bestgems.org/gems/kettle-soup-cover) |
|
|
83
|
+
| [kettle-test](https://bestgems.org/gems/kettle-test) | [GitHub](https://github.com/kettle-dev/kettle-test) | standard test runner and coverage harness | [](https://bestgems.org/gems/kettle-test) |
|
|
84
|
+
| [rubocop-lts](https://bestgems.org/gems/rubocop-lts) | [GitHub](https://github.com/rubocop-lts/rubocop-lts) | Ruby-version-aware linting | [](https://bestgems.org/gems/rubocop-lts) |
|
|
85
|
+
| [turbo_tests2](https://bestgems.org/gems/turbo_tests2) | [GitHub](https://github.com/galtzo-floss/turbo_tests2) | parallel test execution | [](https://bestgems.org/gems/turbo_tests2) |
|
|
86
|
+
|
|
87
|
+
</details>
|
|
72
88
|
|
|
73
89
|
### Federated DVCS
|
|
74
90
|
|
|
@@ -172,7 +188,7 @@ NOTE: [kettle-readme-backers][kettle-readme-backers] updates this list every day
|
|
|
172
188
|
No sponsors yet. Be the first!
|
|
173
189
|
<!-- OPENCOLLECTIVE-ORGANIZATIONS:END -->
|
|
174
190
|
|
|
175
|
-
[kettle-readme-backers]: https://github.com/galtzo-floss/gitmoji-regex/blob/main/
|
|
191
|
+
[kettle-readme-backers]: https://github.com/galtzo-floss/gitmoji-regex/blob/main/bin/kettle-readme-backers
|
|
176
192
|
|
|
177
193
|
### Another way to support open-source
|
|
178
194
|
|
|
@@ -184,7 +200,7 @@ I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed
|
|
|
184
200
|
|
|
185
201
|
**[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
|
|
186
202
|
|
|
187
|
-
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate
|
|
203
|
+
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
188
204
|
|
|
189
205
|
## 🔐 Security
|
|
190
206
|
|
|
@@ -230,7 +246,7 @@ Made with [contributors-img][🖐contrib-rocks].
|
|
|
230
246
|
|
|
231
247
|
Also see GitLab Contributors: [https://gitlab.com/galtzo-floss/gitmoji-regex/-/graphs/main][🚎contributors-gl]
|
|
232
248
|
|
|
233
|
-
<details>
|
|
249
|
+
<details markdown="1">
|
|
234
250
|
<summary>⭐️ Star History</summary>
|
|
235
251
|
|
|
236
252
|
<a href="https://star-history.com/galtzo-floss/gitmoji-regex&Date">
|
|
@@ -326,12 +342,8 @@ Thanks for RTFM. ☺️
|
|
|
326
342
|
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
327
343
|
[🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
|
|
328
344
|
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
329
|
-
[🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
|
|
330
|
-
[🖇polar]: https://polar.sh/pboling
|
|
331
345
|
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
|
332
346
|
[🖇kofi]: https://ko-fi.com/pboling
|
|
333
|
-
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
|
334
|
-
[🖇patreon]: https://patreon.com/galtzo
|
|
335
347
|
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
|
336
348
|
[🖇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
|
|
337
349
|
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
|
@@ -421,11 +433,13 @@ Thanks for RTFM. ☺️
|
|
|
421
433
|
[🚎jruby-9.2-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/jruby-9.2.yml
|
|
422
434
|
[🚎jruby-9.3-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/jruby-9.3.yml
|
|
423
435
|
[🚎jruby-9.4-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/jruby-9.4.yml
|
|
436
|
+
[🚎jruby-10.0-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/jruby-10.0.yml
|
|
424
437
|
[🚎truby-22.3-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/truffleruby-22.3.yml
|
|
425
438
|
[🚎truby-23.0-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/truffleruby-23.0.yml
|
|
426
439
|
[🚎truby-23.1-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/truffleruby-23.1.yml
|
|
427
440
|
[🚎truby-24.2-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/truffleruby-24.2.yml
|
|
428
441
|
[🚎truby-25.0-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/truffleruby-25.0.yml
|
|
442
|
+
[🚎truby-33.0-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/truffleruby-33.0.yml
|
|
429
443
|
[🚎2-cov-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/coverage.yml
|
|
430
444
|
[🚎2-cov-wfi]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/coverage.yml/badge.svg
|
|
431
445
|
[🚎3-hd-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/heads.yml
|
|
@@ -455,7 +469,6 @@ Thanks for RTFM. ☺️
|
|
|
455
469
|
[💎ruby-3.2i]: https://img.shields.io/badge/Ruby-3.2-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
456
470
|
[💎ruby-3.3i]: https://img.shields.io/badge/Ruby-3.3-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
457
471
|
[💎ruby-3.4i]: https://img.shields.io/badge/Ruby-3.4-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
458
|
-
[💎ruby-4.0i]: https://img.shields.io/badge/Ruby-4.0-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
459
472
|
[💎ruby-c-i]: https://img.shields.io/badge/Ruby-current-CC342D?style=for-the-badge&logo=ruby&logoColor=green
|
|
460
473
|
[💎ruby-headi]: https://img.shields.io/badge/Ruby-HEAD-CC342D?style=for-the-badge&logo=ruby&logoColor=blue
|
|
461
474
|
[💎truby-22.3i]: https://img.shields.io/badge/Truffle_Ruby-22.3-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
@@ -463,10 +476,13 @@ Thanks for RTFM. ☺️
|
|
|
463
476
|
[💎truby-23.1i]: https://img.shields.io/badge/Truffle_Ruby-23.1-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
464
477
|
[💎truby-24.2i]: https://img.shields.io/badge/Truffle_Ruby-24.2-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
465
478
|
[💎truby-25.0i]: https://img.shields.io/badge/Truffle_Ruby-25.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
479
|
+
[💎truby-33.0i]: https://img.shields.io/badge/Truffle_Ruby-33.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
466
480
|
[💎truby-c-i]: https://img.shields.io/badge/Truffle_Ruby-current-34BCB1?style=for-the-badge&logo=ruby&logoColor=green
|
|
481
|
+
[💎truby-headi]: https://img.shields.io/badge/Truffle_Ruby-HEAD-34BCB1?style=for-the-badge&logo=ruby&logoColor=blue
|
|
467
482
|
[💎jruby-9.2i]: https://img.shields.io/badge/JRuby-9.2-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
468
483
|
[💎jruby-9.3i]: https://img.shields.io/badge/JRuby-9.3-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
469
484
|
[💎jruby-9.4i]: https://img.shields.io/badge/JRuby-9.4-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
485
|
+
[💎jruby-10.0i]: https://img.shields.io/badge/JRuby-10.0-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
470
486
|
[💎jruby-c-i]: https://img.shields.io/badge/JRuby-current-FBE742?style=for-the-badge&logo=ruby&logoColor=green
|
|
471
487
|
[💎jruby-headi]: https://img.shields.io/badge/JRuby-HEAD-FBE742?style=for-the-badge&logo=ruby&logoColor=blue
|
|
472
488
|
[🤝gh-issues]: https://github.com/galtzo-floss/gitmoji-regex/issues
|
|
@@ -503,7 +519,7 @@ Thanks for RTFM. ☺️
|
|
|
503
519
|
[📄license-ref]: MIT.md
|
|
504
520
|
[📄license-img]: https://img.shields.io/badge/License-MIT-259D6C.svg
|
|
505
521
|
[📄license-compat]: https://www.apache.org/legal/resolved.html#category-a
|
|
506
|
-
[📄license-compat-img]: https://img.shields.io/badge/Apache_Compatible:_Category_A
|
|
522
|
+
[📄license-compat-img]: https://img.shields.io/badge/Apache_Compatible:_Category_A-%E2%9C%93-259D6C.svg?style=flat&logo=Apache
|
|
507
523
|
|
|
508
524
|
[📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
|
|
509
525
|
[📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-259D6C.svg?style=flat
|
|
@@ -516,3 +532,14 @@ Thanks for RTFM. ☺️
|
|
|
516
532
|
[💎appraisal2]: https://github.com/appraisal-rb/appraisal2
|
|
517
533
|
[💎appraisal2-img]: https://img.shields.io/badge/appraised_by-appraisal2-34495e.svg?plastic&logo=ruby&logoColor=white
|
|
518
534
|
[💎d-in-dvcs]: https://railsbling.com/posts/dvcs/put_the_d_in_dvcs/
|
|
535
|
+
|
|
536
|
+
<!-- kettle-jem:metadata:start -->
|
|
537
|
+
| Field | Value |
|
|
538
|
+
|---|---|
|
|
539
|
+
| Package | gitmoji-regex |
|
|
540
|
+
| Description | 🏁 A regular expression matching Gitmoji (a subset of Unicode Emoji) symbolsFund overlooked open source projects - bottom of stack, dev/test dependencies: floss-funding.dev |
|
|
541
|
+
| Homepage | https://github.com/galtzo-floss/gitmoji-regex |
|
|
542
|
+
| Source | https://github.com/galtzo-floss/gitmoji-regex |
|
|
543
|
+
| License | `MIT` |
|
|
544
|
+
| Funding | https://github.com/sponsors/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/galtzo-floss, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/gitmoji-regex, https://www.buymeacoffee.com/pboling |
|
|
545
|
+
<!-- kettle-jem:metadata:end -->
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitmoji-regex
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -47,7 +47,7 @@ dependencies:
|
|
|
47
47
|
version: '1.1'
|
|
48
48
|
- - ">="
|
|
49
49
|
- !ruby/object:Gem::Version
|
|
50
|
-
version: 1.1.
|
|
50
|
+
version: 1.1.13
|
|
51
51
|
type: :runtime
|
|
52
52
|
prerelease: false
|
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -57,7 +57,7 @@ dependencies:
|
|
|
57
57
|
version: '1.1'
|
|
58
58
|
- - ">="
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: 1.1.
|
|
60
|
+
version: 1.1.13
|
|
61
61
|
- !ruby/object:Gem::Dependency
|
|
62
62
|
name: kettle-dev
|
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -67,7 +67,7 @@ dependencies:
|
|
|
67
67
|
version: '2.2'
|
|
68
68
|
- - ">="
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
|
-
version: 2.2.
|
|
70
|
+
version: 2.2.15
|
|
71
71
|
type: :development
|
|
72
72
|
prerelease: false
|
|
73
73
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -77,7 +77,7 @@ dependencies:
|
|
|
77
77
|
version: '2.2'
|
|
78
78
|
- - ">="
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
|
-
version: 2.2.
|
|
80
|
+
version: 2.2.15
|
|
81
81
|
- !ruby/object:Gem::Dependency
|
|
82
82
|
name: bundler-audit
|
|
83
83
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -155,7 +155,7 @@ dependencies:
|
|
|
155
155
|
version: '2.0'
|
|
156
156
|
- - ">="
|
|
157
157
|
- !ruby/object:Gem::Version
|
|
158
|
-
version: 2.0.
|
|
158
|
+
version: 2.0.6
|
|
159
159
|
type: :development
|
|
160
160
|
prerelease: false
|
|
161
161
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -165,7 +165,7 @@ dependencies:
|
|
|
165
165
|
version: '2.0'
|
|
166
166
|
- - ">="
|
|
167
167
|
- !ruby/object:Gem::Version
|
|
168
|
-
version: 2.0.
|
|
168
|
+
version: 2.0.6
|
|
169
169
|
- !ruby/object:Gem::Dependency
|
|
170
170
|
name: turbo_tests2
|
|
171
171
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -175,7 +175,7 @@ dependencies:
|
|
|
175
175
|
version: '3.1'
|
|
176
176
|
- - ">="
|
|
177
177
|
- !ruby/object:Gem::Version
|
|
178
|
-
version: 3.1.
|
|
178
|
+
version: 3.1.4
|
|
179
179
|
type: :development
|
|
180
180
|
prerelease: false
|
|
181
181
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -185,7 +185,7 @@ dependencies:
|
|
|
185
185
|
version: '3.1'
|
|
186
186
|
- - ">="
|
|
187
187
|
- !ruby/object:Gem::Version
|
|
188
|
-
version: 3.1.
|
|
188
|
+
version: 3.1.4
|
|
189
189
|
- !ruby/object:Gem::Dependency
|
|
190
190
|
name: ruby-progressbar
|
|
191
191
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -367,11 +367,11 @@ homepage: https://github.com/galtzo-floss/gitmoji-regex
|
|
|
367
367
|
licenses:
|
|
368
368
|
- MIT
|
|
369
369
|
metadata:
|
|
370
|
-
homepage_uri: https://
|
|
371
|
-
source_code_uri: https://github.com/galtzo-floss/gitmoji-regex/tree/v2.0.
|
|
372
|
-
changelog_uri: https://github.com/galtzo-floss/gitmoji-regex/blob/v2.0.
|
|
370
|
+
homepage_uri: https://gitmoji-regex.galtzo.com
|
|
371
|
+
source_code_uri: https://github.com/galtzo-floss/gitmoji-regex/tree/v2.0.3
|
|
372
|
+
changelog_uri: https://github.com/galtzo-floss/gitmoji-regex/blob/v2.0.3/CHANGELOG.md
|
|
373
373
|
bug_tracker_uri: https://github.com/galtzo-floss/gitmoji-regex/issues
|
|
374
|
-
documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/2.0.
|
|
374
|
+
documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/2.0.3
|
|
375
375
|
funding_uri: https://github.com/sponsors/pboling
|
|
376
376
|
wiki_uri: https://github.com/galtzo-floss/gitmoji-regex/wiki
|
|
377
377
|
news_uri: https://www.railsbling.com/tags/gitmoji-regex
|
metadata.gz.sig
CHANGED
|
Binary file
|