summaryrefslogtreecommitdiff
path: root/lib/bundler/settings.rb
AgeCommit message (Expand)Author
2025-11-20[ruby/rubygems] Add support for BUNDLE_LOCKFILE environment variableJeremy Evans
2025-11-19[ruby/rubygems] Warn users that `bundle` now display the help:Edouard CHIN
2025-10-10[rubygems/rubygems] Make update_requires_all_flag to settingsHiroshi SHIBATA
2025-10-10[rubygems/rubygems] Make default_cli_command flag to settingsHiroshi SHIBATA
2025-10-10[rubygems/rubygems] Make global_gem_cache flag to settingsHiroshi SHIBATA
2025-10-10[rubygems/rubygems] Replaced Bundler.feature_flag.plugins? to Bundler.settingsHiroshi SHIBATA
2025-09-19[rubygems/rubygems] Switch `cache_all` to be `true` by defaultDavid Rodríguez
2025-09-19[rubygems/rubygems] Switch `lockfile_checksums` to be true by defaultDavid Rodríguez
2025-09-16[rubygems/rubygems] Remove `allow_offline_install` settingDavid Rodríguez
2025-09-11[rubygems/rubygems] Complete remembered options removalDavid Rodríguez
2025-07-28(Temporarily?) delay path changes and global cache changesDavid Rodríguez
2025-07-07[rubygems/rubygems] Stop allowing calling `#gem` on random objectsDavid Rodríguez
2025-07-07[rubygems/rubygems] Cancel `path_relative_to_cwd` changeDavid Rodríguez
2025-07-07[rubygems/rubygems] Remove `default_install_uses_path` settingDavid Rodríguez
2025-07-07[rubygems/rubygems] Remove `auto_clean_without_path` settingDavid Rodríguez
2025-07-02[rubygems/rubygems] Add a `verbose` setting to enable verbose output for all ...David Rodríguez
2025-07-02[rubygems/rubygems] Document the `simulate_version` settingDavid Rodríguez
2025-07-02[rubygems/rubygems] Remove `print_only_version_number` settingDavid Rodríguez
2025-06-30[rubygems/rubygems] Use Bundler.settings[gem.bundle]Hiroshi SHIBATA
2024-11-11[rubygems/rubygems] Add a `lockfile_checksums` configuration to include check...David Rodríguez
2024-10-23[rubygems/rubygems] Consistently use `:create` action when creating directoriesDavid Rodríguez
2024-06-06[rubygems/rubygems] Avoid appending a final "/" when `fallback_timeout` is us...David Rodríguez
2024-06-06[rubygems/rubygems] Remove per uri options constantDavid Rodríguez
2024-06-06[rubygems/rubygems] Move Bundler settings specific logic to BundlerDavid Rodríguez
2024-06-06[rubygems/rubygems] Avoid `is_a?` check before using `normalize_uri`David Rodríguez
2024-06-06[rubygems/rubygems] Remove unnecessary `.to_s`David Rodríguez
2024-06-06[rubygems/rubygems] Truly ignore commented out settingsDavid Rodríguez
2024-05-30[rubygems/rubygems] Don't let `bundle config` report a path without a Gemfile...David Rodríguez
2024-04-18[rubygems/rubygems] Never write credentials to lockfilesDavid Rodriguez
2024-03-17[rubygems/rubygems] Ignore commented out keys in config fileDavid Rodriguez
2024-01-29[rubygems/rubygems] Use rubygems vendored uri from Bundler when availableDavid Rodríguez
2023-12-07[rubygems/rubygems] Use modern hashes consistentlyDavid Rodríguez
2023-11-27[rubygems/rubygems] Don't remember `--jobs` flagDavid Rodríguez
2023-11-13[rubygems/rubygems] Let RuboCop target Ruby 3.0David Rodríguez
2023-09-15[rubygems/rubygems] Stop allocating the same settings keys repeatedlySamuel Giddins
2023-08-30[rubygems/rubygems] Update bundler/lib/bundler/settings.rbJosh Nichols
2023-08-30[rubygems/rubygems] (Further) Improve Bundler::Settings#[] performance and me...Josh Nichols
2023-08-20[rubygems/rubygems] fix lintJosh Nichols
2023-08-20[rubygems/rubygems] use a one-linerJosh Nichols
2023-08-20[rubygems/rubygems] handle removing `BUNDLE_`, since using start_with? would ...Josh Nichols
2023-08-20[rubygems/rubygems] Don't rely on globals when not matching regexp for "local."Martin Emde
2023-08-20[rubygems/rubygems] Use ! methods once we have a new copy of the string. Use ...Josh Nichols
2023-08-20[rubygems/rubygems] call key.to_s once instead of multiple times to save when...Josh Nichols
2023-08-20[rubygems/rubygems] Use value.match? only on Strings, which avoids allocating...Josh Nichols
2023-08-20[rubygems/rubygems] Use .to_s once in the beginning to save allocations if it...Josh Nichols
2023-08-20[rubygems/rubygems] name is often a symbol, so only to_s once to avoid alloca...Josh Nichols
2023-08-20[rubygems/rubygems] String#start_with? is faster than regex with beginning bo...Josh Nichols
2023-08-20[rubygems/rubygems] Use ! methods on the array, since it is brand new. The in...Josh Nichols
2023-08-20[rubygems/rubygems] Use Array#union to join these, instead of with | multiple...Josh Nichols
2023-08-20[rubygems/rubygems] config is a new Hash, and config.values is a new Array. t...Josh Nichols