From 683f9e1dbf42aa4b326b244f1d4dbbbdcb9e8ceb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 16 Aug 2019 17:45:00 +0200 Subject: [bundler/bundler] No need to activate the `fileutils` default gem The version we're vendoring actually relaxed this restriction back to 2.3.0+, so we can always use the vendored version. https://github.com/bundler/bundler/commit/d366cbfe5d --- lib/bundler/vendored_fileutils.rb | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'lib/bundler/vendored_fileutils.rb') diff --git a/lib/bundler/vendored_fileutils.rb b/lib/bundler/vendored_fileutils.rb index 4b71759224..1be1138ce2 100644 --- a/lib/bundler/vendored_fileutils.rb +++ b/lib/bundler/vendored_fileutils.rb @@ -1,9 +1,4 @@ # frozen_string_literal: true module Bundler; end -if RUBY_VERSION >= "2.4" - require_relative "vendor/fileutils/lib/fileutils" -else - # the version we vendor is 2.4+ - require "fileutils" -end +require_relative "vendor/fileutils/lib/fileutils" -- cgit v1.2.3