1️⃣ Nomono
if ci_badges.map(&:color).detect { it != "green"} ☝️ let me know, as I may have missed the discord notification.
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.
👣 How will this project approach the September 2025 hostile takeover of RubyGems? 🚑️
I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-takeover-of-rubygems-my-thoughts-5hlo).🌻 Synopsis
nomono standardizes local sibling-gem dependency loading for multi-repo setups.
It provides two Gemfile macros:
nomono_gems(**opts)returns{ gem_name => absolute_path }eval_nomono_gems(**opts)directly emitsgem "name", path: "..."
The API mirrors existing *_local.gemfile patterns used in kettle-rb projects, but centralizes path/env logic in one reusable library.
💡 Info you can shake a stick at
| Tokens to Remember | |
|---|---|
| Works with JRuby | |
| Works with Truffle Ruby | |
| Works with MRI Ruby 4 | |
| Works with MRI Ruby 3 | |
| Support & Community | |
| Source | |
| Documentation | |
| Compliance | |
| Style | |
| Maintainer 🎖️ | |
... 💖 |
Compatibility
Compatible with MRI Ruby 3.2.0+, and concordant releases of JRuby, and TruffleRuby.
CI workflows and Appraisals are generated for MRI Ruby 3.2.0+.
This test floor is configured by ruby.test_minimum in .kettle-jem.yml and
may be higher than the gem's runtime compatibility floor when legacy Rubies are
not practical for the current toolchain.
| 🚚 Amazing test matrix was brought to you by | 🔎 appraisal2 🔎 and the color 💚 green 💚 |
|---|---|
| 👟 Check it out! | ✨ github.com/appraisal-rb/appraisal2 ✨ |
Federated DVCS
Find this repo on federated forges (Coming soon!)
| Federated [DVCS][💎d-in-dvcs] Repository | Status | Issues | PRs | Wiki | CI | Discussions | |-------------------------------------------------|-----------------------------------------------------------------------|---------------------------|--------------------------|---------------------------|--------------------------|------------------------------| | 🧪 [kettle-rb/nomono on GitLab][📜src-gl] | The Truth | [💚][🤝gl-issues] | [💚][🤝gl-pulls] | [💚][📜gl-wiki] | 🐭 Tiny Matrix | ➖ | | 🧊 [kettle-rb/nomono on CodeBerg][📜src-cb] | An Ethical Mirror ([Donate][🤝cb-donate]) | [💚][🤝cb-issues] | [💚][🤝cb-pulls] | ➖ | ⭕️ No Matrix | ➖ | | 🐙 [kettle-rb/nomono on GitHub][📜src-gh] | Another Mirror | [💚][🤝gh-issues] | [💚][🤝gh-pulls] | [💚][📜gh-wiki] | 💯 Full Matrix | [💚][gh-discussions] | | 🎮️ [Discord Server][✉️discord-invite] | [![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite] | [Let's][✉️discord-invite] | [talk][✉️discord-invite] | [about][✉️discord-invite] | [this][✉️discord-invite] | [library!][✉️discord-invite] |Enterprise Support 
Available as part of the Tidelift Subscription.
Need enterprise-level guarantees?
The maintainers of this and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use. [![Get help from me on Tidelift][🏙️entsup-tidelift-img]][🏙️entsup-tidelift] - 💡Subscribe for support guarantees covering _all_ your FLOSS dependencies - 💡Tidelift is part of [Sonar][🏙️entsup-tidelift-sonar] - 💡Tidelift pays maintainers to maintain the software you depend on!📊`@`Pointy Haired Boss: An [enterprise support][🏙️entsup-tidelift] subscription is "[never gonna let you down][🧮kloc]", and *supports* open source maintainers Alternatively: - [![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]
✨ Installation
Install the gem and add to the application's Gemfile by executing:
bundle add nomono
If bundler is not being used to manage dependencies, install the gem by executing:
gem install nomono
⚙️ Configuration
Nomono has an environment contract. By default (prefix: "NOMONO_GEMS"):
NOMONO_GEMS_DEVcontrols local-path mode — tri-state:false/0/no/off(or unset) — no local gems; released gems are used (CI default)true/1/yes/on— workspace root is$HOME/src/kettle-rb- Any other value — treated as an explicit workspace root path (
/absolute/pathused as-is; relative path prepended with$HOME)
NOMONO_GEMS_VENDORED_GEMS(or legacyVENDORED_GEMS) is a comma-delimited list of gem names resolved from a vendor directory. This is independent ofNOMONO_GEMS_DEV— it applies when you have vendored copies of specific gems that should override both the workspace and released versions.NOMONO_GEMS_VENDOR_GEM_DIR(or legacyVENDOR_GEM_DIR) is the base path of the vendor directory used for gems listed inNOMONO_GEMS_VENDORED_GEMS. Defaults to$workspace_root/vendor. This is not an alternative form of the workspace root — it only affects vendored gems.NOMONO_GEMS_DEBUGenables debug output from nomono.
Examples
For example, in the kettle-rb family of gems, which nomono is a part of, the parameters used are prefix: "KETTLE_RB", path_env: "KETTLE_RB_DEV".
This means that the following is true:
KETTLE_RB_DEV=false(or unset) — released gems from configured gem server (CI / single-gem development default)KETTLE_RB_DEV=true— local sibling gems from$HOME/src/kettle-rb/<gem>(recommended for full-workspace development)KETTLE_RB_DEV=/custom/path— local sibling gems from/custom/path/<gem>(non-standard workspace layout only)
You can override the env variable names via options. Here is an example for use with rubocop-lts gems:
nomono_gems(
gems: %w[rubocop-lts rubocop-ruby3_2],
prefix: "RUBOCOP_LTS",
path_env: "RUBOCOP_LTS_LOCAL",
vendored_gems_env: "VENDORED_GEMS",
vendor_gem_dir_env: "VENDOR_GEM_DIR",
debug_env: "RUBOCOP_LTS_DEBUG",
)
🔧 Basic Usage
In your Gemfile (or a modular Gemfile loaded via eval_gemfile):
require "nomono/bundler"
local_gems = %w[
kettle-dev
kettle-test
kettle-soup-cover
]
if ENV.fetch("KETTLE_RB_DEV", "false").casecmp("false").zero?
# remote/released gems
gem "kettle-soup-cover", require: false
else
eval_nomono_gems(gems: local_gems, prefix: "KETTLE_RB")
end
🔐 Security
See SECURITY.md.
🤝 Contributing
If you need some ideas of where to help, you could work on adding more code coverage, or if it is already 💯 (see below) check issues or PRs, or use the gem and think about how it could be better.
We so if you make changes, remember to update it.
See CONTRIBUTING.md for more detailed instructions.
🚀 Release Instructions
See CONTRIBUTING.md.
Code Coverage
Coverage service badges
[![Coverage Graph][🏀codecov-g]][🏀codecov] [![Coveralls Test Coverage][🏀coveralls-img]][🏀coveralls] [![QLTY Test Coverage][🏀qlty-covi]][🏀qlty-cov]🪇 Code of Conduct
Everyone interacting with this project's codebases, issue trackers,
chat rooms and mailing lists agrees to follow the .
🌈 Contributors
Made with contributors-img.
Also see GitLab Contributors: https://gitlab.com/kettle-rb/nomono/-/graphs/main
📌 Versioning
This library follows for its public API where practical.
For most applications, prefer the Pessimistic Version Constraint with two digits of precision.
For example:
spec.add_dependency("nomono", "~> 1.0")
📌 Is "Platform Support" part of the public API? More details inside.
Dropping support for a platform can be a breaking change for affected users. If a release changes supported platforms, it should be called out clearly in the changelog and versioned with that impact in mind. To get a better understanding of how SemVer is intended to work over a project's lifetime, read this article from the creator of SemVer: - ["Major Version Numbers are Not Sacred"][📌major-versions-not-sacred]See CHANGELOG.md for a list of releases.
📄 License
The gem is available under the following license: AGPL-3.0-only. See LICENSE.md for details.
If none of the available licenses suit your use case, please contact us to discuss a custom commercial license.
© Copyright
See LICENSE.md for the official copyright notice.
Copyright holders
- Copyright (c) 2026 autobolt - Copyright (c) 2026 Peter H. Boling🤑 A request for help
Maintainers have teeth and need to pay their dentists. After getting laid off in an RIF in March, and encountering difficulty finding a new one, I began spending most of my time building open source tools. I'm hoping to be able to pay for my kids' health insurance this month, so if you value the work I am doing, I need your support. Please consider sponsoring me or the project.
To join the community or get help 👇️ Join the Discord.
To say "thanks!" ☝️ Join the Discord or 👇️ send money.
Please give the project a star ⭐ ♥.
Thanks for RTFM. ☺️
| Field | Value |
|---|---|
| Package | nomono |
| Description | 1️⃣ Provides nomono_gems and eval_nomono_gems to standardize local multi-repo dependency wiring in Gemfiles. |
| Homepage | https://github.com/kettle-rb/nomono |
| Source | https://github.com/kettle-rb/nomono/tree/v1.0.1 |
| License | AGPL-3.0-only |
| Funding | https://github.com/sponsors/pboling, https://issuehunt.io/u/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/kettle-rb, https://patreon.com/galtzo, https://polar.sh/pboling, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/nomono, https://www.buymeacoffee.com/pboling |