nomono 1.0.1 → 1.0.2

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: 71432aaae00b5ce86988d1c23f0d5cc4a94ce4c24dfd5c5bb77ed62f46b89208
4
- data.tar.gz: 7b43fce232bbf577285859cff60142fcbc82908b4933681692c99010643c9db1
3
+ metadata.gz: b47509ca8d4b41af4151a1c6c66fc15ccc1ccc44f008cd0b835ffccff5dc87d7
4
+ data.tar.gz: 8ff2ac529c4b2afc71d3b64102f0761993dcf557ca16d48da889bad5dd7e843c
5
5
  SHA512:
6
- metadata.gz: 6f7b30662efb6390fc62776e9c4d554fcd2e8e65f0ae524d634a8476869da649a6891a297d4de99e0900b817076d38f52674eeafb03636f4585a55c5dbadfe21
7
- data.tar.gz: bed9f18467c787dc51ea65814f245d15027bf2f9d8aa7e090d0331860c9955bb1a6771025758f8e4913b922120c2229e5cd17f9c777f69fbb8208399ae978651
6
+ metadata.gz: 9bc1a6313013c6298336ad29e4331cf75e05371778d548a95fb28a9592b4efdb9068061e1bc3f7e2c0e1e2a67b7b44b26b3cca050e4872af6462e0988d8aabe2
7
+ data.tar.gz: 1ba432de7e7c5e052437ddf69701e7f5d74d6804480393f403015041433d405688fb01a7f7f2344b7b2752da464819b80a0a19f3c8a90a5b9f4168ca32d03aef
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -28,11 +28,34 @@ Please file a bug if you notice a violation of semantic versioning.
28
28
 
29
29
  ### Fixed
30
30
 
31
+ ### Security
32
+
33
+ ## [1.0.2] - 2026-05-31
34
+
35
+ - TAG: [v1.0.2][1.0.2t]
36
+ - COVERAGE: 100.00% -- 86/86 lines in 4 files
37
+ - BRANCH COVERAGE: 100.00% -- 28/28 branches in 4 files
38
+ - 12.50% documented
39
+
40
+ ### Added
41
+
42
+ - Added StructuredMerge git diff driver configuration and the incident response
43
+ plan from the current kettle-jem template.
44
+
45
+ ### Changed
46
+
47
+ - Retemplated with the current kettle-jem template set, including the
48
+ `.structuredmerge/kettle-jem.yml` config migration, README logo and
49
+ templating attribution refresh, current modular Gemfile dependencies, and the
50
+ `kettle-dev` 2.0.6 development dependency floor.
51
+
52
+ ### Fixed
53
+
54
+ - Fixed generated documentation URLs that incorrectly pointed at a monorepo
55
+ `gems/nomono` path.
31
56
  - Made the debug-output resolver spec tolerant of Ruby implementation
32
57
  differences in `Hash#inspect` spacing.
33
58
 
34
- ### Security
35
-
36
59
  ## [1.0.1] - 2026-05-27
37
60
 
38
61
  - TAG: [v1.0.1][1.0.1t]
@@ -64,7 +87,9 @@ Please file a bug if you notice a violation of semantic versioning.
64
87
  - TAG: [v1.0.0][1.0.0t]
65
88
  - 12.50% documented
66
89
 
67
- [Unreleased]: https://github.com/kettle-rb/nomono/compare/v1.0.1...HEAD
90
+ [Unreleased]: https://github.com/kettle-rb/nomono/compare/v1.0.2...HEAD
91
+ [1.0.2]: https://github.com/kettle-rb/nomono/compare/v1.0.1...v1.0.2
92
+ [1.0.2t]: https://github.com/kettle-rb/nomono/releases/tag/v1.0.2
68
93
  [1.0.1]: https://github.com/kettle-rb/nomono/compare/v1.0.0...v1.0.1
69
94
  [1.0.1t]: https://github.com/kettle-rb/nomono/releases/tag/v1.0.1
70
95
  [1.0.0]: https://github.com/kettle-rb/nomono/compare/3080fe8ceff657265445e8b4936aa2a90faa37f9...v1.0.0
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 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 --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: 3.2.0`.
127
+ in `.structuredmerge/kettle-jem.yml`; this project was templated with `ruby.test_minimum: 3.2.0`.
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/kettle-rb/nomono/-/tree/main/gems/nomono
237
- [📜src-cb]: https://codeberg.org/kettle-rb/nomono/src/branch/main/gems/nomono
238
- [📜src-gh]: https://github.com/kettle-rb/nomono/tree/main/gems/nomono
252
+ [📜src-gl]: https://gitlab.com/kettle-rb/nomono
253
+ [📜src-cb]: https://codeberg.org/kettle-rb/nomono
254
+ [📜src-gh]: https://github.com/kettle-rb/nomono
239
255
  [🧪build]: https://github.com/kettle-rb/nomono/actions
240
256
  [🤝conduct]: https://github.com/kettle-rb/nomono/blob/main/CODE_OF_CONDUCT.md
241
257
  [🖐contrib-rocks]: https://contrib.rocks
data/LICENSE.md CHANGED
@@ -9,5 +9,4 @@ If none of the above licenses fit your use case, please [contact us](mailto:flos
9
9
 
10
10
  ## Copyright Notice
11
11
 
12
- Copyright (c) 2026 autobolt
13
12
  Copyright (c) 2026 Peter H. Boling
data/README.md CHANGED
@@ -1,17 +1,10 @@
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] [![kettle-rb Logo by Aboling0, CC BY-SA 4.0][🖼️kettle-rb-i]][🖼️kettle-rb]
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
- [🖼️kettle-rb-i]: https://logos.galtzo.com/assets/images/kettle-rb/avatar-192px.svg
8
- [🖼️kettle-rb]: https://github.com/kettle-rb
1
+ <a href="https://github.com/kettle-rb"><img alt="kettle-rb Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/kettle-rb/avatar-128px.svg" width="14%" align="right"/></a>
9
2
 
10
3
  # 1️⃣ Nomono
11
4
 
12
- [![Version][👽versioni]][👽version] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: AGPL-3.0-only][📄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]
5
+ [![Version][👽versioni]][👽version] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: AGPL-3.0-only][📄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]
13
6
 
14
- `if ci_badges.map(&:color).detect { it != "green"}` ☝️ [let me know][🖼️galtzo-floss], as I may have missed the [discord notification][🖼️galtzo-floss].
7
+ `if ci_badges.map(&:color).detect { it != "green"}` ☝️ [let me know][✉️discord-invite], as I may have missed the [discord notification][✉️discord-invite].
15
8
 
16
9
  ---
17
10
 
@@ -26,7 +19,7 @@ I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-ta
26
19
 
27
20
  </details>
28
21
 
29
- ## 🌻 Synopsis
22
+ ## 🌻 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>
30
23
 
31
24
  `nomono` standardizes local sibling-gem dependency loading for multi-repo setups.
32
25
 
@@ -148,7 +141,7 @@ nomono_gems(
148
141
  path_env: "RUBOCOP_LTS_LOCAL",
149
142
  vendored_gems_env: "VENDORED_GEMS",
150
143
  vendor_gem_dir_env: "VENDOR_GEM_DIR",
151
- debug_env: "RUBOCOP_LTS_DEBUG",
144
+ debug_env: "RUBOCOP_LTS_DEBUG"
152
145
  )
153
146
  ```
154
147
 
@@ -270,7 +263,6 @@ See [LICENSE.md][📄license] for the official copyright notice.
270
263
  <details markdown="1">
271
264
  <summary>Copyright holders</summary>
272
265
 
273
- - Copyright (c) 2026 autobolt
274
266
  - Copyright (c) 2026 Peter H. Boling
275
267
 
276
268
  </details>
@@ -294,6 +286,8 @@ To say "thanks!" ☝️ Join the Discord or 👇️ send money.
294
286
 
295
287
  ### Please give the project a star ⭐ ♥.
296
288
 
289
+ Many parts of this project are actively managed by a [kettle-jem](https://github.com/structuredmerge/structuredmerge-ruby/tree/main/gems/kettle-jem) smart template utilizing [StructuredMerge.org](https://structuredmerge.org) merge contracts.
290
+
297
291
  Thanks for RTFM. ☺️
298
292
 
299
293
  [⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
@@ -333,7 +327,7 @@ Thanks for RTFM. ☺️
333
327
  [✉️ruby-friends]: https://app.daily.dev/squads/rubyfriends
334
328
 
335
329
  [✇bundle-group-pattern]: https://gist.github.com/pboling/4564780
336
- [⛳️gem-namespace]: https://github.com/kettle-rb/nomono/tree/main/gems/nomono
330
+ [⛳️gem-namespace]: https://github.com/kettle-rb/nomono
337
331
  [⛳️namespace-img]: https://img.shields.io/badge/namespace-Nomono-3C2D2D.svg?style=square&logo=ruby&logoColor=white
338
332
  [⛳️gem-name]: https://bestgems.org/gems/nomono
339
333
  [⛳️name-img]: https://img.shields.io/badge/name-nomono-3C2D2D.svg?style=square&logo=rubygems&logoColor=red
@@ -373,11 +367,11 @@ Thanks for RTFM. ☺️
373
367
  [💁🏼‍♂️peterboling]: http://www.peterboling.com
374
368
  [🚂railsbling]: http://www.railsbling.com
375
369
  [📜src-gl-img]: https://img.shields.io/badge/GitLab-FBA326?style=for-the-badge&logo=Gitlab&logoColor=orange
376
- [📜src-gl]: https://gitlab.com/kettle-rb/nomono/-/tree/main/gems/nomono
370
+ [📜src-gl]: https://gitlab.com/kettle-rb/nomono
377
371
  [📜src-cb-img]: https://img.shields.io/badge/CodeBerg-4893CC?style=for-the-badge&logo=CodeBerg&logoColor=blue
378
- [📜src-cb]: https://codeberg.org/kettle-rb/nomono/src/branch/main/gems/nomono
372
+ [📜src-cb]: https://codeberg.org/kettle-rb/nomono
379
373
  [📜src-gh-img]: https://img.shields.io/badge/GitHub-238636?style=for-the-badge&logo=Github&logoColor=green
380
- [📜src-gh]: https://github.com/kettle-rb/nomono/tree/main/gems/nomono
374
+ [📜src-gh]: https://github.com/kettle-rb/nomono
381
375
  [📜docs-cr-rd-img]: https://img.shields.io/badge/RubyDoc-Current_Release-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
382
376
  [📜docs-head-rd-img]: https://img.shields.io/badge/YARD_on_Galtzo.com-HEAD-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
383
377
  [📜gl-wiki]: https://gitlab.com/kettle-rb/nomono/-/wikis/home
@@ -396,8 +390,6 @@ Thanks for RTFM. ☺️
396
390
  [🏀codecovi]: https://codecov.io/gh/kettle-rb/nomono/graph/badge.svg
397
391
  [🏀coveralls]: https://coveralls.io/github/kettle-rb/nomono?branch=main
398
392
  [🏀coveralls-img]: https://coveralls.io/repos/github/kettle-rb/nomono/badge.svg?branch=main
399
- [🖐codeQL]: https://github.com/kettle-rb/nomono/security/code-scanning
400
- [🖐codeQL-img]: https://github.com/kettle-rb/nomono/actions/workflows/codeql-analysis.yml/badge.svg
401
393
  [🚎ruby-3.2-wf]: https://github.com/kettle-rb/nomono/actions/workflows/ruby-3.2.yml
402
394
  [🚎ruby-3.3-wf]: https://github.com/kettle-rb/nomono/actions/workflows/ruby-3.3.yml
403
395
  [🚎ruby-3.4-wf]: https://github.com/kettle-rb/nomono/actions/workflows/ruby-3.4.yml
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Nomono
4
4
  module Version
5
- VERSION = "1.0.1"
5
+ VERSION = "1.0.2"
6
6
  end
7
7
  VERSION = Version::VERSION # Traditional Constant Location
8
8
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nomono
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -66,7 +66,7 @@ dependencies:
66
66
  version: '2.0'
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: 2.0.1
69
+ version: 2.0.6
70
70
  type: :development
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ dependencies:
76
76
  version: '2.0'
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: 2.0.1
79
+ version: 2.0.6
80
80
  - !ruby/object:Gem::Dependency
81
81
  name: bundler-audit
82
82
  requirement: !ruby/object:Gem::Requirement
@@ -278,10 +278,10 @@ licenses:
278
278
  - AGPL-3.0-only
279
279
  metadata:
280
280
  homepage_uri: https://nomono.galtzo.com/
281
- source_code_uri: https://github.com/kettle-rb/nomono/tree/v1.0.1
282
- changelog_uri: https://github.com/kettle-rb/nomono/blob/v1.0.1/CHANGELOG.md
281
+ source_code_uri: https://github.com/kettle-rb/nomono/tree/v1.0.2
282
+ changelog_uri: https://github.com/kettle-rb/nomono/blob/v1.0.2/CHANGELOG.md
283
283
  bug_tracker_uri: https://github.com/kettle-rb/nomono/issues
284
- documentation_uri: https://www.rubydoc.info/gems/nomono/1.0.1
284
+ documentation_uri: https://www.rubydoc.info/gems/nomono/1.0.2
285
285
  funding_uri: https://github.com/sponsors/pboling
286
286
  wiki_uri: https://github.com/kettle-rb/nomono/wiki
287
287
  news_uri: https://www.railsbling.com/tags/nomono
metadata.gz.sig CHANGED
@@ -1,3 +1,4 @@
1
- ��c�.\����P}��@��
2
- �N#��M��Q�-u����",\JCd��0"��#3����M\���`��}-���h�Z�R� GJK�,�Nb������#�����&s�~MVcL���%���Ew�(��tunHaҫ�y|/�?o�<w�sM�A����:���u|���ky�������� ����ע.�F�f��5�d����J����*�i@����反>��-
3
- ��S }�$���v��8�.���*��aw��Ep���^<a�!�lm���;!��K���o�]�x1Ŀ��I|o"-��ڪ�qd_PI�+�4��4�����*ƍ�܏Eoq��E��~��[[�=
1
+ ��3��<���%�
2
+ ��ݝ��l,.�+F�%+x.Ɛ�p�����[���xB&���]sO���2/���n�yb�-5�-��2�S��1,��8�9/�����}ʓ- ��oJ�d*P�AЊvx�܊��ۯ15��
3
+ Y�����}z���)K3rG2��ԯ�G�'����e]B�#z��6n}FqfsheŒwf �bw� Պw�� �{ N��0W;��.z-��Ē�WG�1�:kS��m�����ז bX��)UQ.�>�Fx
4
+ Է���{ru�Am�U���X�����\#�{�9^��t���*J��ۅ ��n���u� ْ