gitmoji-regex 2.0.6 → 2.0.7
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 +42 -1
- data/lib/gitmoji/regex/version.rb +4 -1
- data.tar.gz.sig +0 -0
- metadata +10 -10
- 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: da5f01ad14ffedaac5bb50245c640569af82453a8472a36ac0dd85e86f4eea33
|
|
4
|
+
data.tar.gz: b507416f3c3bbfd4113b416c3596b07dddcd852129f0c65309e002322497f19d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c76742ee7f0a2e35781ba70eee3b847b311ef4e449f9d42dd7a1906bf0d195b34f1c375bd2c7841d70b58b037c0032bebe1ca55b309daa58cbe2d363db89886a
|
|
7
|
+
data.tar.gz: ba3d22bb7ecd8092a971e45ab7678cb1866e0fb772e8d064dee7f1ae8c14a852261abe8398f978573ed5ccc695802879733f12b851add55f5cb3bdde9b1dc5e6
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,45 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [2.0.7] - 2026-07-28
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.0.7][2.0.7t]
|
|
36
|
+
- COVERAGE: 100.00% -- 58/58 lines in 3 files
|
|
37
|
+
- BRANCH COVERAGE: 100.00% -- 4/4 branches in 3 files
|
|
38
|
+
- 100.00% documented
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- Documentation linting now has its generated `yard-lint` dependency and severity config available in the local bundle.
|
|
43
|
+
|
|
44
|
+
- kettle-jem-template-20260726-001 - Projects now include YARD lint
|
|
45
|
+
configuration and documentation dependencies so documentation issues fail
|
|
46
|
+
before generated docs are refreshed.
|
|
47
|
+
|
|
48
|
+
- kettle-jem-template-20260727-001 - Spec harness documentation now lists the
|
|
49
|
+
RSpec helpers provided by `kettle-test`.
|
|
50
|
+
|
|
51
|
+
### Changed
|
|
52
|
+
|
|
53
|
+
- kettle-jem-template-20260728-001 - Generated Ruby workflows now use clearer
|
|
54
|
+
setup-ruby-flash planning and can prepare appraisal-only jobs without
|
|
55
|
+
installing the main Gemfile bundle.
|
|
56
|
+
|
|
57
|
+
### Fixed
|
|
58
|
+
|
|
59
|
+
- kettle-jem-template-20260726-002 - Generated version files now document their
|
|
60
|
+
version namespace and constants, reducing warning-only YARD lint output.
|
|
61
|
+
|
|
62
|
+
- kettle-jem-template-20260726-003 - Coverage upload steps now treat Coveralls,
|
|
63
|
+
QLTY, and Codecov as optional, so provider outages do not fail CI when local
|
|
64
|
+
coverage thresholds still pass.
|
|
65
|
+
- kettle-jem-template-20260728-002 - Generated RuboCop configs now ignore the
|
|
66
|
+
same `gemfiles/vendor/bundle` tree as `.gitignore`, so vendored dependency
|
|
67
|
+
installs are not reported as project lint debt.
|
|
68
|
+
- kettle-jem-template-20260728-003 - Generated dep-heads workflows now run
|
|
69
|
+
TruffleRuby jobs with current RubyGems and Bundler, avoiding setup failures
|
|
70
|
+
before the test suite starts.
|
|
71
|
+
|
|
33
72
|
## [2.0.6] - 2026-07-25
|
|
34
73
|
|
|
35
74
|
- TAG: [v2.0.6][2.0.6t]
|
|
@@ -248,7 +287,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
248
287
|
|
|
249
288
|
- Initial release
|
|
250
289
|
|
|
251
|
-
[Unreleased]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.
|
|
290
|
+
[Unreleased]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.7...HEAD
|
|
291
|
+
[2.0.7]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.6...v2.0.7
|
|
292
|
+
[2.0.7t]: https://github.com/galtzo-floss/gitmoji-regex/releases/tag/v2.0.7
|
|
252
293
|
[2.0.6]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.5...v2.0.6
|
|
253
294
|
[2.0.6t]: https://github.com/galtzo-floss/gitmoji-regex/releases/tag/v2.0.6
|
|
254
295
|
[2.0.5]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.4...v2.0.5
|
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
module Gitmoji
|
|
4
4
|
module Regex
|
|
5
|
+
# Version namespace for this gem.
|
|
5
6
|
module Version
|
|
6
|
-
|
|
7
|
+
# Current gem version.
|
|
8
|
+
VERSION = "2.0.7"
|
|
7
9
|
end
|
|
10
|
+
# Current gem version exposed at the traditional constant location.
|
|
8
11
|
VERSION = Version::VERSION # Traditional Constant Location
|
|
9
12
|
end
|
|
10
13
|
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.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -175,7 +175,7 @@ dependencies:
|
|
|
175
175
|
version: '2.0'
|
|
176
176
|
- - ">="
|
|
177
177
|
- !ruby/object:Gem::Version
|
|
178
|
-
version: 2.0.
|
|
178
|
+
version: 2.0.16
|
|
179
179
|
type: :development
|
|
180
180
|
prerelease: false
|
|
181
181
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -185,7 +185,7 @@ dependencies:
|
|
|
185
185
|
version: '2.0'
|
|
186
186
|
- - ">="
|
|
187
187
|
- !ruby/object:Gem::Version
|
|
188
|
-
version: 2.0.
|
|
188
|
+
version: 2.0.16
|
|
189
189
|
- !ruby/object:Gem::Dependency
|
|
190
190
|
name: turbo_tests2
|
|
191
191
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -195,7 +195,7 @@ dependencies:
|
|
|
195
195
|
version: '3.2'
|
|
196
196
|
- - ">="
|
|
197
197
|
- !ruby/object:Gem::Version
|
|
198
|
-
version: 3.2.
|
|
198
|
+
version: 3.2.3
|
|
199
199
|
type: :development
|
|
200
200
|
prerelease: false
|
|
201
201
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -205,7 +205,7 @@ dependencies:
|
|
|
205
205
|
version: '3.2'
|
|
206
206
|
- - ">="
|
|
207
207
|
- !ruby/object:Gem::Version
|
|
208
|
-
version: 3.2.
|
|
208
|
+
version: 3.2.3
|
|
209
209
|
- !ruby/object:Gem::Dependency
|
|
210
210
|
name: ruby-progressbar
|
|
211
211
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -229,7 +229,7 @@ dependencies:
|
|
|
229
229
|
version: '1.0'
|
|
230
230
|
- - ">="
|
|
231
231
|
- !ruby/object:Gem::Version
|
|
232
|
-
version: 1.0.
|
|
232
|
+
version: 1.0.7
|
|
233
233
|
type: :development
|
|
234
234
|
prerelease: false
|
|
235
235
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -239,7 +239,7 @@ dependencies:
|
|
|
239
239
|
version: '1.0'
|
|
240
240
|
- - ">="
|
|
241
241
|
- !ruby/object:Gem::Version
|
|
242
|
-
version: 1.0.
|
|
242
|
+
version: 1.0.7
|
|
243
243
|
- !ruby/object:Gem::Dependency
|
|
244
244
|
name: http
|
|
245
245
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -377,10 +377,10 @@ licenses:
|
|
|
377
377
|
- MIT
|
|
378
378
|
metadata:
|
|
379
379
|
homepage_uri: https://gitmoji-regex.galtzo.com
|
|
380
|
-
source_code_uri: https://github.com/galtzo-floss/gitmoji-regex/tree/v2.0.
|
|
381
|
-
changelog_uri: https://github.com/galtzo-floss/gitmoji-regex/blob/v2.0.
|
|
380
|
+
source_code_uri: https://github.com/galtzo-floss/gitmoji-regex/tree/v2.0.7
|
|
381
|
+
changelog_uri: https://github.com/galtzo-floss/gitmoji-regex/blob/v2.0.7/CHANGELOG.md
|
|
382
382
|
bug_tracker_uri: https://github.com/galtzo-floss/gitmoji-regex/issues
|
|
383
|
-
documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/2.0.
|
|
383
|
+
documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/2.0.7
|
|
384
384
|
funding_uri: https://github.com/sponsors/pboling
|
|
385
385
|
wiki_uri: https://github.com/galtzo-floss/gitmoji-regex/wiki
|
|
386
386
|
news_uri: https://www.railsbling.com/tags/gitmoji-regex
|
metadata.gz.sig
CHANGED
|
Binary file
|