gitmoji-regex 2.0.0 → 2.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fc495c654f9479e0da410c77d818dc59045ff773469e44f7d730cb7169d1e7d6
4
- data.tar.gz: af914da9dd869f39fa5b83bc5d88f22c83a1c8249205dd482059898eb5606604
3
+ metadata.gz: fe1d3d09a945d894971176073609e8d00e775d9634f3c9ebb083e06c8d4b4970
4
+ data.tar.gz: c7a9668aa2aa39369a8eded10c44846e0e16cf2a297b9ac6564e655982c0ebf9
5
5
  SHA512:
6
- metadata.gz: 1e8302d62c568f578f04be8ceef7307e03667fc0b7db652c562d63631170eb1b2f2f25f60b9b1f3964cd07c23841859035c47d012049cd17b6a7a0e045e5c771
7
- data.tar.gz: cd69af9267c08d6dc9cba07eede6fbbd69d1dd07463aaa5448365d17cc61d7f907195bda6ca4806e73d0a29c919d1497cabcc81765b60af290ffdb8f23f8183b
6
+ metadata.gz: b7475075467a69a760e5aadb5005fb9af706dcb53ffaaa52b7fe270aa406fa581c2be50b1eefaac752f1e18e3363439521ef696157949a6b84db4e054575d4c3
7
+ data.tar.gz: 2552b947b5e45d8291d261a5e36c726959863b8250e9d3b1b32975f68b4982db700d627411d684bc06a6462f9e30d388fe44105a0f38bfd3052c2e0038d45196
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,24 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [2.0.1] - 2026-05-31
34
+
35
+ - TAG: [v2.0.1][2.0.1t]
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
+ ### Changed
41
+
42
+ - Refreshed kettle-jem-managed project files, including StructuredMerge git
43
+ driver configuration, local development dependency wiring, and README/Rakefile
44
+ template updates.
45
+
46
+ ### Fixed
47
+
48
+ - Fixed generated documentation URLs that incorrectly pointed at a monorepo
49
+ `gems/gitmoji-regex` path.
50
+
33
51
  ## [2.0.0] - 2026-05-26
34
52
 
35
53
  - TAG: [v2.0.0][2.0.0t]
@@ -139,7 +157,9 @@ Please file a bug if you notice a violation of semantic versioning.
139
157
 
140
158
  - Initial release
141
159
 
142
- [Unreleased]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.0...HEAD
160
+ [Unreleased]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.1...HEAD
161
+ [2.0.1]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.0...v2.0.1
162
+ [2.0.1t]: https://github.com/galtzo-floss/gitmoji-regex/releases/tag/v2.0.1
143
163
  [2.0.0]: https://github.com/galtzo-floss/gitmoji-regex/compare/v1.0.3...v2.0.0
144
164
  [2.0.0t]: https://github.com/galtzo-floss/gitmoji-regex/releases/tag/v2.0.0
145
165
  [1.0.4]: https://github.com/galtzo-floss/gitmoji-regex/compare/v1.0.3...v1.0.4
data/CONTRIBUTING.md CHANGED
@@ -102,13 +102,29 @@ Git hooks and commit message helpers (exe/kettle-commit-msg)
102
102
  - GIT_HOOK_FOOTER_SENTINEL: Required when footer append is enabled — a unique first-line sentinel to prevent duplicates
103
103
  - GIT_HOOK_FOOTER_APPEND_DEBUG: Extra debug output in the footer template (true/false)
104
104
 
105
+ Git diff driver setup
106
+ - Local setup writes repository `.gitattributes` entries and local Git `diff.smorg-*` command config so this checkout uses StructuredMerge semantic diffs.
107
+ - Global setup registers `diff.smorg-*` commands once in the user Git config; use it when you work across several StructuredMerge-enabled repositories.
108
+ - Include-file setup writes `.git/smorg/config` and includes it from local Git config, keeping command registrations out of the repository files.
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
+
111
+ ```console
112
+ K_JEM_TEMPLATING=true bundle exec kettle-jem install
113
+ ```
114
+
115
+ Troubleshooting Git diffs
116
+ - Use `git diff --no-ext-diff` to compare against Git's built-in diff output.
117
+ - Use `git diff --no-textconv` when a textconv projection obscures the raw file bytes you need to inspect.
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 bundle exec kettle-jem install --undo`; remove global command registrations with `git config --global --unset-all diff.smorg-ruby.command`.
120
+
105
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 -- ...`.
106
122
 
107
123
  ## Appraisals
108
124
 
109
125
  From time to time the [appraisal2][🚎appraisal2] gemfiles in `gemfiles/` will need to be updated.
110
126
  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`.
127
+ in `.structuredmerge/kettle-jem.yml`; this project was templated with `ruby.test_minimum: 2.4`.
112
128
  That value describes the lowest Ruby version expected to run the test/development
113
129
  toolchain, and it may be higher than the gemspec runtime floor.
114
130
 
@@ -233,9 +249,9 @@ NOTE: To build without signing the gem set `SKIP_GEM_SIGNING` to any value in th
233
249
  14. Run `bundle exec rake release` which will create a git tag for the version,
234
250
  push git commits and tags, and push the `.gem` file to the gem host configured in the gemspec.
235
251
 
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
252
+ [📜src-gl]: https://gitlab.com/galtzo-floss/gitmoji-regex
253
+ [📜src-cb]: https://codeberg.org/galtzo-floss/gitmoji-regex
254
+ [📜src-gh]: https://github.com/galtzo-floss/gitmoji-regex
239
255
  [🧪build]: https://github.com/galtzo-floss/gitmoji-regex/actions
240
256
  [🤝conduct]: https://github.com/galtzo-floss/gitmoji-regex/blob/main/CODE_OF_CONDUCT.md
241
257
  [🖐contrib-rocks]: https://contrib.rocks
data/FUNDING.md CHANGED
@@ -4,12 +4,16 @@ Official Discord 👉️ [![Live Chat on Discord][✉️discord-invite-img]][✉
4
4
 
5
5
  Many paths lead to being a sponsor or a backer of this project. Are you on such a path?
6
6
 
7
- [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal]
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
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
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
13
+ [🖇osc-backers]: https://opencollective.com/galtzo-floss#backer
14
+ [🖇osc-backers-i]: https://opencollective.com/galtzo-floss/backers/badge.svg?style=flat
15
+ [🖇osc-sponsors]: https://opencollective.com/galtzo-floss#sponsor
16
+ [🖇osc-sponsors-i]: https://opencollective.com/galtzo-floss/sponsors/badge.svg?style=flat
13
17
  [🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
14
18
  [🖇sponsor]: https://github.com/sponsors/pboling
15
19
  [🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
@@ -42,7 +46,7 @@ To join the community or get help 👇️ Join the Discord.
42
46
 
43
47
  To say "thanks!" ☝️ Join the Discord or 👇️ send money.
44
48
 
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]
49
+ [![Sponsor galtzo-floss/gitmoji-regex on Open Source Collective][🖇osc-all-bottom-img]][🖇osc] 💌 [![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
50
 
47
51
  # Another Way to Support Open Source Software
48
52
 
@@ -55,6 +59,13 @@ I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed
55
59
  **[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
56
60
 
57
61
  [⛳liberapay-bottom-img]: https://img.shields.io/liberapay/goal/pboling.svg?style=for-the-badge&logo=liberapay&color=a51611
62
+ [🖇osc-all-img]: https://img.shields.io/opencollective/all/galtzo-floss
63
+ [🖇osc-sponsors-img]: https://img.shields.io/opencollective/sponsors/galtzo-floss
64
+ [🖇osc-backers-img]: https://img.shields.io/opencollective/backers/galtzo-floss
65
+ [🖇osc-all-bottom-img]: https://img.shields.io/opencollective/all/galtzo-floss?style=for-the-badge
66
+ [🖇osc-sponsors-bottom-img]: https://img.shields.io/opencollective/sponsors/galtzo-floss?style=for-the-badge
67
+ [🖇osc-backers-bottom-img]: https://img.shields.io/opencollective/backers/galtzo-floss?style=for-the-badge
68
+ [🖇osc]: https://opencollective.com/galtzo-floss
58
69
  [🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
59
70
  [🖇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
71
  [🖇paypal-bottom-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=for-the-badge&logo=paypal&color=0A0A0A
data/README.md CHANGED
@@ -1,21 +1,18 @@
1
- [![Galtzo FLOSS Logo by Aboling0, CC BY-SA 4.0][🖼️galtzo-floss-i]][🖼️galtzo-floss] [![ruby-lang Logo, Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5][🖼️ruby-lang-i]][🖼️ruby-lang]
1
+ <a href="https://github.com/galtzo-floss"><img alt="galtzo-floss Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/galtzo-floss/avatar-128px.svg" width="14%" align="right"/></a>
2
2
 
3
- [🖼️galtzo-floss-i]: https://logos.galtzo.com/assets/images/galtzo-floss/avatar-192px.svg
4
- [🖼️galtzo-floss]: https://discord.gg/3qme4XHNKN
5
- [🖼️ruby-lang-i]: https://logos.galtzo.com/assets/images/ruby-lang/avatar-192px.svg
6
- [🖼️ruby-lang]: https://www.ruby-lang.org/
7
3
 
8
- # 🍲 Gitmoji::Regex
9
4
 
10
- [![Version][👽versioni]][👽version] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: MIT][📄license-img]][📄license] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![CodeCov Test Coverage][🏀codecovi]][🏀codecov] [![Coveralls Test Coverage][🏀coveralls-img]][🏀coveralls] [![QLTY Test Coverage][🏀qlty-covi]][🏀qlty-cov] [![QLTY Maintainability][🏀qlty-mnti]][🏀qlty-mnt] [![CI Heads][🚎3-hd-wfi]][🚎3-hd-wf] [![CI Runtime Dependencies @ HEAD][🚎12-crh-wfi]][🚎12-crh-wf] [![CI Current][🚎11-c-wfi]][🚎11-c-wf] [![CI Truffle Ruby][🚎9-t-wfi]][🚎9-t-wf] [![CI JRuby][🚎10-j-wfi]][🚎10-j-wf] [![Deps Locked][🚎13-🔒️-wfi]][🚎13-🔒️-wf] [![Deps Unlocked][🚎14-🔓️-wfi]][🚎14-🔓️-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf] [![CodeQL][🖐codeQL-img]][🖐codeQL] [![Apache SkyWalking Eyes License Compatibility Check][🚎15-🪪-wfi]][🚎15-🪪-wf]
5
+ # 🏁 Gitmoji::Regex
11
6
 
12
- `if ci_badges.map(&:color).detect { it != "green"}` ☝️ [let me know][🖼️galtzo-floss], as I may have missed the [discord notification][🖼️galtzo-floss].
7
+ [![Version][👽versioni]][👽version] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: MIT][📄license-img]][📄license] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![CodeCov Test Coverage][🏀codecovi]][🏀codecov] [![Coveralls Test Coverage][🏀coveralls-img]][🏀coveralls] [![QLTY Test Coverage][🏀qlty-covi]][🏀qlty-cov] [![QLTY Maintainability][🏀qlty-mnti]][🏀qlty-mnt] [![CI Heads][🚎3-hd-wfi]][🚎3-hd-wf] [![CI Runtime Dependencies @ HEAD][🚎12-crh-wfi]][🚎12-crh-wf] [![CI Current][🚎11-c-wfi]][🚎11-c-wf] [![CI Truffle Ruby][🚎9-t-wfi]][🚎9-t-wf] [![CI JRuby][🚎10-j-wfi]][🚎10-j-wf] [![Deps Locked][🚎13-🔒️-wfi]][🚎13-🔒️-wf] [![Deps Unlocked][🚎14-🔓️-wfi]][🚎14-🔓️-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf] [![Apache SkyWalking Eyes License Compatibility Check][🚎15-🪪-wfi]][🚎15-🪪-wf]
8
+
9
+ `if ci_badges.map(&:color).detect { it != "green"}` ☝️ [let me know][✉️discord-invite], as I may have missed the [discord notification][✉️discord-invite].
13
10
 
14
11
  ---
15
12
 
16
13
  `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.
17
14
 
18
- [![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 on Polar][🖇polar-img]][🖇polar] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
15
+ [![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 on Polar][🖇polar-img]][🖇polar] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
19
16
 
20
17
  <details>
21
18
  <summary>👣 How will this project approach the September 2025 hostile takeover of RubyGems? 🚑️</summary>
@@ -24,7 +21,7 @@ I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-ta
24
21
 
25
22
  </details>
26
23
 
27
- ## 🌻 Synopsis
24
+ ## 🌻 Synopsis <a href="https://discord.gg/3qme4XHNKN"><img alt="Galtzo FLOSS Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/galtzo-floss/avatar-128px.svg" width="8%" align="right"/></a> <a href="https://ruby-toolbox.com"><img alt="ruby-lang Logo, Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5" src="https://logos.galtzo.com/assets/images/ruby-lang/avatar-128px.svg" width="8%" align="right"/></a>
28
25
 
29
26
  This gem provides a regex that allows Ruby code to test a string for a [Gitmoji](https://github.com/carloscuesta/gitmoji) character. Gitmoji is a [subset](https://raw.githubusercontent.com/carloscuesta/gitmoji/master/src/data/gitmojis.json) of the Unicode Emoji character set. This gem is _not_ a fork of, but was **inspired** by, the wonderful [emoji_regex](https://github.com/ticky/ruby-emoji-regex) gem.
30
27
 
@@ -114,6 +111,10 @@ Not needed.
114
111
 
115
112
 
116
113
 
114
+
115
+
116
+
117
+
117
118
 
118
119
 
119
120
 
@@ -144,7 +145,7 @@ For most applications, prefer the [Pessimistic Version Constraint][📌pvc] with
144
145
  For example:
145
146
 
146
147
  ```ruby
147
- spec.add_dependency("gitmoji-regex", "~> 1.0")
148
+ spec.add_dependency("gitmoji-regex", "~> 2.0")
148
149
  ```
149
150
 
150
151
  <details markdown="1">
@@ -168,9 +169,21 @@ The gem is available as open source under the terms of
168
169
  the [MIT](MIT.md) [![License: MIT][📄license-img]][📄license-ref].
169
170
 
170
171
  [gh-discussions]: https://github.com/galtzo-floss/gitmoji-regex/discussions
172
+ [kettle-readme-backers]: https://github.com/galtzo-floss/gitmoji-regex/blob/main/exe/kettle-readme-backers
171
173
  [⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
172
174
  [⛳liberapay-bottom-img]: https://img.shields.io/liberapay/goal/pboling.svg?style=for-the-badge&logo=liberapay&color=a51611
173
175
  [⛳liberapay]: https://liberapay.com/pboling/donate
176
+ [🖇osc-all-img]: https://img.shields.io/opencollective/all/galtzo-floss
177
+ [🖇osc-sponsors-img]: https://img.shields.io/opencollective/sponsors/galtzo-floss
178
+ [🖇osc-backers-img]: https://img.shields.io/opencollective/backers/galtzo-floss
179
+ [🖇osc-backers]: https://opencollective.com/galtzo-floss#backer
180
+ [🖇osc-backers-i]: https://opencollective.com/galtzo-floss/backers/badge.svg?style=flat
181
+ [🖇osc-sponsors]: https://opencollective.com/galtzo-floss#sponsor
182
+ [🖇osc-sponsors-i]: https://opencollective.com/galtzo-floss/sponsors/badge.svg?style=flat
183
+ [🖇osc-all-bottom-img]: https://img.shields.io/opencollective/all/galtzo-floss?style=for-the-badge
184
+ [🖇osc-sponsors-bottom-img]: https://img.shields.io/opencollective/sponsors/galtzo-floss?style=for-the-badge
185
+ [🖇osc-backers-bottom-img]: https://img.shields.io/opencollective/backers/galtzo-floss?style=for-the-badge
186
+ [🖇osc]: https://opencollective.com/galtzo-floss
174
187
  [🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
175
188
  [🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
176
189
  [🖇sponsor]: https://github.com/sponsors/pboling
@@ -193,7 +206,7 @@ the [MIT](MIT.md) [![License: MIT][📄license-img]][📄license-ref].
193
206
  [✉️ruby-friends-img]: https://img.shields.io/badge/daily.dev-%F0%9F%92%8E_Ruby_Friends-0A0A0A?style=for-the-badge&logo=dailydotdev&logoColor=white
194
207
  [✉️ruby-friends]: https://app.daily.dev/squads/rubyfriends
195
208
  [✇bundle-group-pattern]: https://gist.github.com/pboling/4564780
196
- [⛳️gem-namespace]: https://github.com/galtzo-floss/gitmoji-regex/tree/main/gems/gitmoji-regex
209
+ [⛳️gem-namespace]: https://github.com/galtzo-floss/gitmoji-regex
197
210
  [⛳️namespace-img]: https://img.shields.io/badge/namespace-Gitmoji::Regex-3C2D2D.svg?style=square&logo=ruby&logoColor=white
198
211
  [⛳️gem-name]: https://bestgems.org/gems/gitmoji-regex
199
212
  [⛳️name-img]: https://img.shields.io/badge/name-gitmoji--regex-3C2D2D.svg?style=square&logo=rubygems&logoColor=red
@@ -233,11 +246,11 @@ the [MIT](MIT.md) [![License: MIT][📄license-img]][📄license-ref].
233
246
  [💁🏼‍♂️peterboling]: http://www.peterboling.com
234
247
  [🚂railsbling]: http://www.railsbling.com
235
248
  [📜src-gl-img]: https://img.shields.io/badge/GitLab-FBA326?style=for-the-badge&logo=Gitlab&logoColor=orange
236
- [📜src-gl]: https://gitlab.com/galtzo-floss/gitmoji-regex/-/tree/main/gems/gitmoji-regex
249
+ [📜src-gl]: https://gitlab.com/galtzo-floss/gitmoji-regex
237
250
  [📜src-cb-img]: https://img.shields.io/badge/CodeBerg-4893CC?style=for-the-badge&logo=CodeBerg&logoColor=blue
238
- [📜src-cb]: https://codeberg.org/galtzo-floss/gitmoji-regex/src/branch/main/gems/gitmoji-regex
251
+ [📜src-cb]: https://codeberg.org/galtzo-floss/gitmoji-regex
239
252
  [📜src-gh-img]: https://img.shields.io/badge/GitHub-238636?style=for-the-badge&logo=Github&logoColor=green
240
- [📜src-gh]: https://github.com/galtzo-floss/gitmoji-regex/tree/main/gems/gitmoji-regex
253
+ [📜src-gh]: https://github.com/galtzo-floss/gitmoji-regex
241
254
  [📜docs-cr-rd-img]: https://img.shields.io/badge/RubyDoc-Current_Release-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
242
255
  [📜docs-head-rd-img]: https://img.shields.io/badge/YARD_on_Galtzo.com-HEAD-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
243
256
  [📜gl-wiki]: https://gitlab.com/galtzo-floss/gitmoji-regex/-/wikis/home
@@ -256,8 +269,6 @@ the [MIT](MIT.md) [![License: MIT][📄license-img]][📄license-ref].
256
269
  [🏀codecovi]: https://codecov.io/gh/galtzo-floss/gitmoji-regex/graph/badge.svg
257
270
  [🏀coveralls]: https://coveralls.io/github/galtzo-floss/gitmoji-regex?branch=main
258
271
  [🏀coveralls-img]: https://coveralls.io/repos/github/galtzo-floss/gitmoji-regex/badge.svg?branch=main
259
- [🖐codeQL]: https://github.com/galtzo-floss/gitmoji-regex/security/code-scanning
260
- [🖐codeQL-img]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/codeql-analysis.yml/badge.svg
261
272
  [🚎ruby-2.4-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/ruby-2.4.yml
262
273
  [🚎ruby-2.5-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/ruby-2.5.yml
263
274
  [🚎ruby-2.6-wf]: https://github.com/galtzo-floss/gitmoji-regex/actions/workflows/ruby-2.6.yml
@@ -363,14 +374,3 @@ the [MIT](MIT.md) [![License: MIT][📄license-img]][📄license-ref].
363
374
  [💎appraisal2]: https://github.com/appraisal-rb/appraisal2
364
375
  [💎appraisal2-img]: https://img.shields.io/badge/appraised_by-appraisal2-34495e.svg?plastic&logo=ruby&logoColor=white
365
376
  [💎d-in-dvcs]: https://railsbling.com/posts/dvcs/put_the_d_in_dvcs/
366
-
367
- <!-- kettle-jem:metadata:start -->
368
- | Field | Value |
369
- |---|---|
370
- | Package | gitmoji-regex |
371
- | 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 |
372
- | Homepage | https://github.com/galtzo-floss/gitmoji-regex |
373
- | Source | https://github.com/galtzo-floss/gitmoji-regex/tree/v1.0.3 |
374
- | License | `MIT` |
375
- | Funding | https://github.com/sponsors/pboling, https://issuehunt.io/u/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://patreon.com/galtzo, https://polar.sh/pboling, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/gitmoji-regex, https://www.buymeacoffee.com/pboling |
376
- <!-- kettle-jem:metadata:end -->
@@ -3,7 +3,7 @@
3
3
  module Gitmoji
4
4
  module Regex
5
5
  module Version
6
- VERSION = "2.0.0"
6
+ VERSION = "2.0.1"
7
7
  end
8
8
  VERSION = Version::VERSION # Traditional Constant Location
9
9
  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.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -65,6 +65,9 @@ dependencies:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
67
  version: '2.0'
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: 2.0.6
68
71
  type: :development
69
72
  prerelease: false
70
73
  version_requirements: !ruby/object:Gem::Requirement
@@ -72,6 +75,9 @@ dependencies:
72
75
  - - "~>"
73
76
  - !ruby/object:Gem::Version
74
77
  version: '2.0'
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: 2.0.6
75
81
  - !ruby/object:Gem::Dependency
76
82
  name: bundler-audit
77
83
  requirement: !ruby/object:Gem::Requirement
@@ -149,7 +155,7 @@ dependencies:
149
155
  version: '2.0'
150
156
  - - ">="
151
157
  - !ruby/object:Gem::Version
152
- version: 2.0.0
158
+ version: 2.0.1
153
159
  type: :development
154
160
  prerelease: false
155
161
  version_requirements: !ruby/object:Gem::Requirement
@@ -159,7 +165,7 @@ dependencies:
159
165
  version: '2.0'
160
166
  - - ">="
161
167
  - !ruby/object:Gem::Version
162
- version: 2.0.0
168
+ version: 2.0.1
163
169
  - !ruby/object:Gem::Dependency
164
170
  name: ruby-progressbar
165
171
  requirement: !ruby/object:Gem::Requirement
@@ -304,7 +310,7 @@ dependencies:
304
310
  - - ">="
305
311
  - !ruby/object:Gem::Version
306
312
  version: 1.0.11
307
- description: "\U0001F372 A regular expression matching Gitmoji (a subset of Unicode
313
+ description: "\U0001F3C1 A regular expression matching Gitmoji (a subset of Unicode
308
314
  Emoji) symbolsFund overlooked open source projects - bottom of stack, dev/test dependencies:
309
315
  floss-funding.dev"
310
316
  email:
@@ -342,10 +348,10 @@ licenses:
342
348
  - MIT
343
349
  metadata:
344
350
  homepage_uri: https://structuredmerge.org
345
- source_code_uri: https://github.com/galtzo-floss/gitmoji-regex/tree/v2.0.0
346
- changelog_uri: https://github.com/galtzo-floss/gitmoji-regex/blob/v2.0.0/CHANGELOG.md
351
+ source_code_uri: https://github.com/galtzo-floss/gitmoji-regex/tree/v2.0.1
352
+ changelog_uri: https://github.com/galtzo-floss/gitmoji-regex/blob/v2.0.1/CHANGELOG.md
347
353
  bug_tracker_uri: https://github.com/galtzo-floss/gitmoji-regex/issues
348
- documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/2.0.0
354
+ documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/2.0.1
349
355
  funding_uri: https://github.com/sponsors/pboling
350
356
  wiki_uri: https://github.com/galtzo-floss/gitmoji-regex/wiki
351
357
  news_uri: https://www.railsbling.com/tags/gitmoji-regex
@@ -353,7 +359,7 @@ metadata:
353
359
  rubygems_mfa_required: 'true'
354
360
  rdoc_options:
355
361
  - "--title"
356
- - "gitmoji-regex - \U0001F372 A regular expression for Gitmoji symbols"
362
+ - "gitmoji-regex - \U0001F3C1 A regular expression for Gitmoji symbols"
357
363
  - "--main"
358
364
  - README.md
359
365
  - "--exclude"
@@ -376,5 +382,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
376
382
  requirements: []
377
383
  rubygems_version: 4.0.10
378
384
  specification_version: 4
379
- summary: "\U0001F372 A regular expression for Gitmoji symbols"
385
+ summary: "\U0001F3C1 A regular expression for Gitmoji symbols"
380
386
  test_files: []
metadata.gz.sig CHANGED
Binary file