HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/gems/ruby-2.7.4@global/gems/bundler-unload-1.0.2/README.md
# Bundler Unload

Allow unloading `bundler` after `Bundler.load`.

## Installation

    gem install bundler-unload

## Example 1

    require 'bundler-unload'
    Bundler.with_bundle do |bundler|
      bundler.spec.do_the_magic
    end

## Example 2

    require 'bundler-unload'
    rubygems_spec = Bundler.rubygems.plain_specs
    begin
      Bundler.load.spec.do_the_magic
    ensure
      Bundler.unload!(rubygems_spec)
    end

## Authors

 - Michal Papis <mpapis@gmail.com>

## Thanks

 - Joshua Hull
 - Carl Lerche