๐ฟ Kettle::Wash
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.
๐ป Synopsis

kettle-wash is for gems that define runtime behavior in constants, especially
constants whose values are conditionally derived from ENV.
Ruby constants are usually loaded once. That is a problem for test suites that need to prove every line and branch of a constant definition file, because a second example cannot naturally re-run:
DO_COV = ENV.fetch("K_SOUP_COV_DO", "false").casecmp?("true")
COVERAGE_DIR = ENV.fetch("K_SOUP_COV_DIR", "coverage")
kettle-wash gives those constant-owning modules a small reset API. Specs can
delete the declared constants, mutate ENV, reload the source file, and then
assert the alternate branch. This lets coverage tools see the real constant
definition lines and branches execute, instead of forcing projects to choose
between accurate coverage and constant-backed configuration.
๐ก 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.
The amazing test matrix is powered by the kettle-dev stack.
How kettle-dev manages complexity in tests
| Gem | Source | Role | Daily download rank |
|---|---|---|---|
| appraisal2 | GitHub | multi-dependency Appraisal matrix generation | |
| appraisal2-rubocop | GitHub | RuboCop Appraisal generator integration | |
| kettle-dev | GitHub | development, release, and CI workflow tooling | |
| kettle-jem | GitHub | Appraisals & CI workflow templates | |
| kettle-soup-cover | GitHub | SimpleCov coverage policy and reporting | |
| kettle-test | GitHub | standard test runner and coverage harness | |
| rubocop-lts | GitHub | Ruby-version-aware linting | |
| turbo_tests2 | GitHub | parallel test execution |
Federated DVCS
Find this repo on federated forges (Coming soon!)
| Federated DVCS Repository | Status | Issues | PRs | Wiki | CI | Discussions |
|---|---|---|---|---|---|---|
| ๐งช kettle-dev/kettle-wash on GitLab | The Truth | ๐ | ๐ | ๐ | ๐ญ Tiny Matrix | โ |
| ๐ง kettle-dev/kettle-wash on CodeBerg | An Ethical Mirror (Donate) | ๐ | ๐ | โ | โญ๏ธ No Matrix | โ |
| ๐ kettle-dev/kettle-wash on GitHub | Another Mirror | ๐ | ๐ | ๐ | ๐ฏ Full Matrix | ๐ |
| ๐ฎ๏ธ Discord Server | Let's | talk | about | this | library! |
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.
- ๐กSubscribe for support guarantees covering all your FLOSS dependencies
- ๐กTidelift is part of Sonar
- ๐กTidelift pays maintainers to maintain the software you depend on!
๐@Pointy Haired Boss: An enterprise support subscription is "never gonna let you down", and supports open source maintainers
Alternatively:
โจ Installation
Install the gem and add to the application's Gemfile by executing:
bundle add kettle-wash
If bundler is not being used to manage dependencies, install the gem by executing:
gem install kettle-wash
โ๏ธ Configuration
There is no global configuration. Each consumer declares the constants it owns and the file that can rebuild them.
๐ง Basic Usage
Use Kettle::Wash::Change when a module has constants derived from environment
or runtime state and specs need to reset those constants between examples for
accurate line and branch coverage.
require "kettle/wash"
module MyGem
module Constants
VALUE = ENV.fetch("MY_GEM_VALUE", "default")
include Kettle::Wash::Change.new(
constants: %w[
VALUE
],
path: "my_gem/constants.rb"
)
end
end
The generated singleton methods remove only the declared constants:
MyGem::Constants.delete_const
MyGem::Constants.reset_const do
ENV["MY_GEM_VALUE"] = "changed"
end
RSpec Example
In specs, use stub_env from
rspec-stubbed_env inside
reset_const. The constants are deleted before the block runs, then the
configured file is loaded again after the block finishes. This avoids modifying
the real process environment.
require "rspec/stubbed_env"
RSpec.describe MyGem::Constants do
include_context "with stubbed env"
it "uses the default value" do
described_class.reset_const do
stub_env("MY_GEM_VALUE" => nil)
end
expect(described_class::VALUE).to eq("default")
end
it "uses the configured value" do
described_class.reset_const do
stub_env("MY_GEM_VALUE" => "configured")
end
expect(described_class::VALUE).to eq("configured")
end
end
That shape lets SimpleCov see both examples execute the actual constant
definition line. For a production use, see
kettle-soup-cover's constants specs,
which reset Kettle::Soup::Cover::Constants under different K_SOUP_COV_*
environment values to cover branch-heavy constant definitions.
๐ 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
๐ช 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-dev/kettle-wash/-/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("kettle-wash", "~> 0.1")
๐ 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:
See CHANGELOG.md for a list of releases.
๐ License
The gem is available under the following licenses: AGPL-3.0-only, PolyForm-Small-Business-1.0.0, Big-Time-Public-License. See LICENSE.md for details.
If none of the available licenses suit your use case, please contact us to discuss a custom commercial license.
License use-case guide
| Use case | License |
|---|---|
| Copy-left open source | AGPL-3.0-only |
| Non-commercial (research, education, personal use) | PolyForm-Small-Business-1.0.0 or Big-Time-Public-License |
| Small business commercial | PolyForm-Small-Business-1.0.0 or Big-Time-Public-License |
| Larger business commercial | Big-Time-Public-License or contact us for a custom license |
ยฉ Copyright
See LICENSE.md for the official copyright notice.
Copyright holders
- Required Notice: 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 โญ โฅ.
Many parts of this project are actively managed by a kettle-jem smart template utilizing StructuredMerge.org merge contracts.
Thanks for RTFM. โบ๏ธ
| Field | Value |
|---|---|
| Package | kettle-wash |
| Description | ๐ฟ Constant deletion and reset helpers for gems that need repeatable reloads while testing constant-backed runtime configuration. |
| Homepage | https://github.com/kettle-dev/kettle-wash |
| Source | https://github.com/kettle-dev/kettle-wash |
| License | AGPL-3.0-only OR PolyForm-Small-Business-1.0.0 OR LicenseRef-Big-Time-Public-License |
| Funding | https://github.com/sponsors/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/kettle-dev, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/kettle-wash, https://www.buymeacoffee.com/pboling |