| ๐ NOTE |
|---|
| RubyGems.org was recently compromised in a hostile takeover about which many lies have been told. |
| I'm in the process of adding warnings to some important gems because I don't condone the theft of the bundler and rubygems-update projects. |
| Once publishing to gem.coop is available I will stop publishing to RubyGems.org. |
| Please see here and here for more info on what comes next. |
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.
A Bundler plugin that adds namespace support for gem resolution, enabling a choice between alternate versions of a single gem in different namespaces, as well as multiple "flavors" of the same gem (partial support), from namespace-aware sources.
Bundle::Namespace extends Bundler's DSL to support namespaced gem resolution. This allows you to:
- Use the same gem name from different organizations/namespaces
- Differentiate between multiple "flavors" of the same gem
- Organize gems by namespace (similar to GitHub organizations)
- Maintain separate versions of the same gem for different purposes
| Tokens to Remember | |
|---|---|
| Works with JRuby | |
| Works with Truffle Ruby | |
| Works with MRI Ruby 3 | |
| Support & Community | |
| Source | |
| Documentation | |
| Compliance | |
| Style | |
| Maintainer ๐๏ธ | |
... ๐ |
Compatible with MRI Ruby 2.7.0+, and concordant releases of JRuby, and TruffleRuby.
| ๐ Amazing test matrix was brought to you by | ๐ appraisal2 ๐ and the color ๐ green ๐ |
|---|---|
| ๐ Check it out! | โจ github.com/appraisal-rb/appraisal2 โจ |
Find this repo on federated forges (Coming soon!)
| Federated DVCS Repository | Status | Issues | PRs | Wiki | CI | Discussions |
|---|---|---|---|---|---|---|
| ๐งช galtzo-floss/bundle-namespace on GitLab | The Truth | ๐ | ๐ | ๐ | ๐ญ Tiny Matrix | โ |
| ๐ง galtzo-floss/bundle-namespace on CodeBerg | An Ethical Mirror (Donate) | ๐ | ๐ | โ | โญ๏ธ No Matrix | โ |
| ๐ galtzo-floss/bundle-namespace on GitHub | Another Mirror | ๐ | ๐ | ๐ | ๐ฏ Full Matrix | ๐ |
| ๐ฎ๏ธ Discord Server | Let's | talk | about | this | library! |
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:
Install the gem and add to the application's Gemfile by executing:
bundle add bundle-namespaceIf bundler is not being used to manage dependencies, install the gem by executing:
gem install bundle-namespaceFor Medium or High Security Installations
This gem is cryptographically signed, and has verifiable SHA-256 and SHA-512 checksums by stone_checksums. Be sure the gem you install hasnโt been tampered with by following the instructions below.
Add my public key (if you havenโt already, expires 2045-04-29) as a trusted certificate:
gem cert --add <(curl -Ls https://raw.github.com/galtzo-floss/certs/main/pboling.pem)You only need to do that once. Then proceed to install with:
gem install bundle-namespace -P HighSecurityThe HighSecurity trust profile will verify signed gems, and not allow the installation of unsigned dependencies.
If you want to up your security game full-time:
bundle config set --global trust-policy MediumSecurityMediumSecurity instead of HighSecurity is necessary if not all the gems you use are signed.
NOTE: Be prepared to track down certs for signed gems and add them the same way you added mine.
Configure the plugin via .bundle/config:
# Enable strict mode (raise errors for unsupported sources)
bundle config set namespace.strict_mode true
# Disable warnings for ignored namespaces
bundle config set namespace.warn_on_missing false
# Custom lockfile path
bundle config set namespace.lockfile_path "config/namespace-lock.yaml"Or in Ruby:
Bundle::Namespace::Configuration.strict_mode = true
Bundle::Namespace::Configuration.warn_on_missing = false
Bundle::Namespace::Configuration.lockfile_path = "custom-path.yaml"Use the namespace macro in your Gemfile, similar to the platform macro:
# Block syntax - namespace within default source
namespace :myorg do
gem "shared-library", "~> 2.0"
gem "custom-middleware"
end
# Within a specific source
source "https://gems.mycompany.com" do
namespace :engineering do
gem "internal-tools", "~> 1.5"
end
namespace :security do
gem "internal-tools", "~> 2.0" # Different version, same name!
end
end
# Option syntax
gem "my-gem", "~> 1.0", namespace: :myorgHandle the same gem from different namespaces:
source "https://rubygems.org" do
namespace :myorganization do
gem "rails", "~> 7.0", github: "myorganization/rails", branch: "custom"
end
end
# Or for multi-tenant applications
source "https://gems.saas-platform.com" do
namespace :tenant_a do
gem "custom-theme", "~> 1.0"
end
namespace :tenant_b do
gem "custom-theme", "~> 2.0"
end
endNamespaces can be nested for complex organization:
namespace :parent do
namespace :child do
gem "nested-gem"
end
endThe plugin adds a namespace macro to Gemfile syntax, tracking which gems belong to which namespaces.
During dependency resolution, the plugin:
- Makes gem sources namespace-aware
- Filters available gems by namespace
- Resolves dependencies considering namespaces
- Tracks namespace information in specifications
The plugin generates bundle-namespace-lock.yaml alongside Gemfile.lock:
---
"https://gems.mycompany.com":
engineering:
internal-tools:
version: 1.5.2
dependencies:
- thor
platform: ruby
security:
internal-tools:
version: 2.0.1
dependencies:
- thor
- openssl
platform: rubyThis lockfile ensures reproducible builds with namespace information.
- Ruby >= 3.1
- Bundler >= 2.6
The plugin automatically detects if a gem source supports namespaces. For sources that do:
- Gems are fetched from
<namespace>/<gem-name>paths - Specs are filtered by namespace
- Multiple versions of the same gem can coexist
For sources that don't support namespaces:
- Namespace declarations are tracked but not enforced
- Standard gem resolution applies
- Warnings are shown (unless disabled)
After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests.
To install this gem onto your local machine, run bundle exec rake install.
# Run all tests
bundle exec rspec
# Run with documentation format
bundle exec rspec --format documentation
# Run specific test file
bundle exec rspec spec/bundle/namespace/dsl_extension_spec.rblib/bundle/namespace/
โโโ version.rb # Version information
โโโ errors.rb # Custom error classes
โโโ registry.rb # Namespace-to-gem registry
โโโ configuration.rb # Plugin configuration
โโโ dsl_extension.rb # Gemfile DSL namespace macro
โโโ dependency_extension.rb # Namespace-aware dependencies
โโโ source_extensions.rb # Namespace-aware sources
โโโ resolver_extension.rb # Namespace-aware resolution
โโโ specification_extension.rb # Namespace tracking in specs
โโโ lockfile_generator.rb # Generate namespace lockfile
โโโ lockfile_parser.rb # Parse namespace lockfile
โโโ lockfile_validator.rb # Validate lockfile consistency
โโโ bundler_integration.rb # Auto-integration with Bundler
โโโ hooks.rb # Extension installation
โโโ plugin.rb # Main plugin entry point
The plugin uses module prepending to minimally monkey-patch Bundler:
Bundler::DslโDslExtension(adds namespace macro)Bundler::DependencyโDependencyExtension(tracks namespaces)Bundler::Source::RubygemsโSourceRubygemsExtension(namespace-aware lookups)Bundler::ResolverโResolverExtension(namespace-aware resolution)Bundler::RemoteSpecificationโSpecificationExtension(namespace tracking)Bundler::LazySpecificationโSpecificationExtension(namespace tracking)
source "https://gems.mycompany.com" do
namespace :platform_team do
gem "core-services", "~> 3.0"
gem "monitoring-toolkit"
end
namespace :security_team do
gem "core-services", "~> 2.5" # Legacy compatibility
gem "security-scanner"
end
endsource "https://rubygems.org" do
namespace :myorganization do
gem "rails", github: "myorganization/rails", branch: "custom-patches"
end
endsource "https://gems.saas-platform.com" do
namespace :tenant_a do
gem "custom-theme", "~> 1.0"
end
namespace :tenant_b do
gem "custom-theme", "~> 2.0"
end
end- Check if source supports namespaces
- Enable warnings:
bundle config set namespace.warn_on_missing true - Check
bundle-namespace-lock.yamlwas generated
# Validate manually
bundle exec ruby -r bundle/namespace -e "
parser = Bundle::Namespace::LockfileParser.new
validator = Bundle::Namespace::LockfileValidator.new(parser)
validator.validate!
validator.report
"# Remove namespace lockfile
rm bundle-namespace-lock.yaml
# Clear registry (in Ruby)
Bundle::Namespace::Registry.clear!While pboling tools are free software and will always be, the project would benefit immensely from some funding. Raising a monthly budget of... "dollars" would make the project more sustainable.
We welcome both individual and corporate sponsors! We also offer a wide array of funding channels to account for your preferences (although currently Open Collective is our preferred funding platform).
If you're working in a company that's making significant use of pboling tools we'd appreciate it if you suggest to your company to become a pboling sponsor.
You can support the development of pboling tools via GitHub Sponsors, Liberapay, PayPal, Open Collective and Tidelift.
| ๐ NOTE |
|---|
| If doing a sponsorship in the form of donation is problematic for your company from an accounting standpoint, we'd recommend the use of Tidelift, where you can get a support-like subscription instead. |
Support us with a monthly donation and help us continue our activities. [Become a backer]
NOTE: kettle-readme-backers updates this list every day, automatically.
No backers yet. Be the first!
Become a sponsor and get your logo on our README on GitHub with a link to your site. [Become a sponsor]
NOTE: kettle-readme-backers updates this list every day, automatically.
No sponsors yet. Be the first!
How wonderful it is that nobody need wait a single moment before starting to improve the world.
โAnne Frank
Iโm driven by a passion to foster a thriving open-source community โ a space where people can tackle complex problems, no matter how small. Revitalizing libraries that have fallen into disrepair, and building new libraries focused on solving real-world challenges, are my passions โ totaling 79 hours of FLOSS coding over just the past seven days, a pretty regular week for me. I was recently affected by layoffs, and the tech jobs market is unwelcoming. Iโm reaching out here because your support would significantly aid my efforts to provide for my family, and my farm (11 ๐ chickens, 2 ๐ถ dogs, 3 ๐ฐ rabbits, 8 ๐โ cats).
If you work at a company that uses my work, please encourage them to support me as a corporate sponsor. My work on gems you use might show up in bundle fund.
Iโm developing a new library, floss_funding, designed to empower open-source developers like myself to get paid for the work we do, in a sustainable way. Please give it a look.
Floss-Funding.dev: ๐๏ธ No network calls. ๐๏ธ No tracking. ๐๏ธ No oversight. ๐๏ธ Minimal crypto hashing. ๐ก Easily disabled nags
See SECURITY.md.
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 reek, 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.
See CONTRIBUTING.md.
Everyone interacting with this project's codebases, issue trackers,
chat rooms and mailing lists agrees to follow the .
Made with contributors-img.
Also see GitLab Contributors: https://gitlab.com/galtzo-floss/bundle-namespace/-/graphs/main
This Library adheres to .
Violations of this scheme should be reported as bugs.
Specifically, if a minor or patch version is released that breaks backward compatibility,
a new version should be immediately released that restores compatibility.
Breaking changes to the public API will only be introduced with new major versions.
dropping support for a platform is both obviously and objectively a breaking change
โJordan Harband (@ljharb, maintainer of SemVer) in SemVer issue 716
I understand that policy doesn't work universally ("exceptions to every rule!"), but it is the policy here. As such, in many cases it is good to specify a dependency on this library using the Pessimistic Version Constraint with two digits of precision.
For example:
spec.add_dependency("bundle-namespace", "~> 1.0")๐ Is "Platform Support" part of the public API? More details inside.
SemVer should, IMO, but doesn't explicitly, say that dropping support for specific Platforms is a breaking change to an API. It is obvious to many, but not all, and since the spec is silent, the bike shedding is endless.
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.
The gem is available as open source under the terms of
the MIT License .
See LICENSE.txt for the official Copyright Notice.
-
Copyright (c) 2023, 2025 Peter H.ย Boling, of
Galtzo.com
, and bundle-namespace contributors.
Maintainers have teeth and need to pay their dentists. After getting laid off in an RIF in March and filled with many dozens of rejections, I'm now spending ~60+ hours a week 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.
Thanks for RTFM.