summaryrefslogtreecommitdiff
path: root/lib/bundler
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-08-18 06:43:39 +0000
committerBundlerbot <bot@bundler.io>2019-08-18 06:43:39 +0000
commitdb600de804aa415a7d4df198b37b3b9479ebb94f (patch)
treea29308ef9db0a9860d045a532b8769582dc80834 /lib/bundler
parent6125cb3d81908a3505dad8acbe94861176a13b22 (diff)
parentc9dc0f6f2c3fa10905223c9391373f41da02d553 (diff)
downloadbundler-db600de804aa415a7d4df198b37b3b9479ebb94f.tar.gz
Merge #7312
7312: Remove old rubies stuff no longer needed r=hsbt a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was that was still some code specific to old rubies we no longer support. ### What is your fix for the problem, implemented in this PR? My fix is to remove that code. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
Diffstat (limited to 'lib/bundler')
-rw-r--r--lib/bundler/cli/exec.rb2
-rw-r--r--lib/bundler/spec_set.rb6
2 files changed, 2 insertions, 6 deletions
diff --git a/lib/bundler/cli/exec.rb b/lib/bundler/cli/exec.rb
index 5dcf4a01ef..0b0e991ea5 100644
--- a/lib/bundler/cli/exec.rb
+++ b/lib/bundler/cli/exec.rb
@@ -13,7 +13,7 @@ module Bundler
@cmd = args.shift
@args = args
- if Bundler.current_ruby.ruby_2? && !Bundler.current_ruby.jruby?
+ if !Bundler.current_ruby.jruby?
@args << { :close_others => !options.keep_file_descriptors? }
elsif options.keep_file_descriptors?
Bundler.ui.warn "Ruby version #{RUBY_VERSION} defaults to keeping non-standard file descriptors on Kernel#exec."
diff --git a/lib/bundler/spec_set.rb b/lib/bundler/spec_set.rb
index 2c5d9e6580..463113ef8e 100644
--- a/lib/bundler/spec_set.rb
+++ b/lib/bundler/spec_set.rb
@@ -162,11 +162,7 @@ module Bundler
end
def extract_circular_gems(error)
- if Bundler.current_ruby.mri? && Bundler.current_ruby.on_19?
- error.message.scan(/(\w+) \([^)]/).flatten
- else
- error.message.scan(/@name="(.*?)"/).flatten
- end
+ error.message.scan(/@name="(.*?)"/).flatten
end
def lookup