summaryrefslogtreecommitdiff
path: root/lib/bundler/shared_helpers.rb
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-06-22 17:35:25 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-06-23 18:41:36 -0500
commite008a1aa7bf18fadb8783e7d03ac61c2abab9a21 (patch)
tree02b3243df38af593710df83f8908cc77ddf8a812 /lib/bundler/shared_helpers.rb
parent3821b16cd72d634032aa5526f5aaa2e5858193fc (diff)
downloadbundler-e008a1aa7bf18fadb8783e7d03ac61c2abab9a21.tar.gz
Print the first batch of major deprecation warnings
Diffstat (limited to 'lib/bundler/shared_helpers.rb')
-rw-r--r--lib/bundler/shared_helpers.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/bundler/shared_helpers.rb b/lib/bundler/shared_helpers.rb
index 376235abfd..7b56619c5f 100644
--- a/lib/bundler/shared_helpers.rb
+++ b/lib/bundler/shared_helpers.rb
@@ -127,6 +127,15 @@ module Bundler
ui.warn("[DEPRECATED FOR #{Bundler::VERSION.split(".").first.to_i + 1}.0] #{message}")
end
+ def print_major_deprecations!
+ if RUBY_VERSION < "2"
+ major_deprecation("Bundler will only support ruby >= 2.0, you are running #{RUBY_VERSION}")
+ end
+ unless Bundler.rubygems.provides?(">= 2")
+ major_deprecation("Bundler will only support rubygems >= 2.4, you are running #{self.class.version}")
+ end
+ end
+
private
def find_gemfile