summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-02-21 13:42:30 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-02-21 16:32:24 +0100
commitfda9db6b3cd5af72f4d11927116ca5f027c16eb4 (patch)
treeb874f7de6616779776bb4703976095a403a6b4b0
parent85f194d805a13f1e920ebc6e0e372345b5890be8 (diff)
downloadbundler-deprecation_changes.tar.gz
Rename major_deprecations to silence_deprecationsdeprecation_changes
-rw-r--r--lib/bundler/settings.rb4
-rw-r--r--lib/bundler/shared_helpers.rb2
-rw-r--r--man/bundle-config.ronn6
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/bundler/settings.rb b/lib/bundler/settings.rb
index 15c3ba1881..ff9a5f57af 100644
--- a/lib/bundler/settings.rb
+++ b/lib/bundler/settings.rb
@@ -41,7 +41,6 @@ module Bundler
init_gems_rb
list_command
lockfile_uses_separate_rubygems_sources
- major_deprecations
no_install
no_prune
only_update_to_newer_versions
@@ -52,6 +51,7 @@ module Bundler
prefer_patch
print_only_version_number
setup_makes_kernel_gem_public
+ silence_deprecations
silence_root_warning
skip_default_git_sources
specific_platform
@@ -76,7 +76,7 @@ module Bundler
].freeze
DEFAULT_CONFIG = {
- :major_deprecations => true,
+ :silence_deprecations => false,
:disable_version_check => true,
:prefer_patch => false,
:redirect => 5,
diff --git a/lib/bundler/shared_helpers.rb b/lib/bundler/shared_helpers.rb
index ba2808e034..ed88caf8cf 100644
--- a/lib/bundler/shared_helpers.rb
+++ b/lib/bundler/shared_helpers.rb
@@ -374,7 +374,7 @@ module Bundler
def prints_major_deprecations?
require "bundler"
- return false unless Bundler.settings[:major_deprecations]
+ return false if Bundler.settings[:silence_deprecations]
require "bundler/deprecate"
return false if Bundler::Deprecate.skip
true
diff --git a/man/bundle-config.ronn b/man/bundle-config.ronn
index 64f0fea743..0b61cbeca0 100644
--- a/man/bundle-config.ronn
+++ b/man/bundle-config.ronn
@@ -210,9 +210,6 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
The number of gems Bundler can install in parallel. Defaults to 1.
* `list_command` (`BUNDLE_LIST_COMMAND`)
Enable new list command feature
-* `major_deprecations` (`BUNDLE_MAJOR_DEPRECATIONS`):
- Whether Bundler should print deprecation warnings for behavior that will
- be changed in the next major version.
* `no_install` (`BUNDLE_NO_INSTALL`):
Whether `bundle package` should skip installing gems.
* `no_prune` (`BUNDLE_NO_PRUNE`):
@@ -247,6 +244,9 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
* `shebang` (`BUNDLE_SHEBANG`):
The program name that should be invoked for generated binstubs. Defaults to
the ruby install name used to generate the binstub.
+* `silence_deprecations` (`BUNDLE_SILENCE_DEPRECATIONS`):
+ Whether Bundler should silence deprecation warnings for behavior that will
+ be changed in the next major version.
* `silence_root_warning` (`BUNDLE_SILENCE_ROOT_WARNING`):
Silence the warning Bundler prints when installing gems as root.
* `skip_default_git_sources` (`BUNDLE_SKIP_DEFAULT_GIT_SOURCES`):