summaryrefslogtreecommitdiff
path: root/lib/bundler/vendored_thor.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-06-08 21:30:30 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-03 09:29:55 +0900
commit9596f432505a8282473b5a011eaaa5de6fa101ef (patch)
treef05185c4c3ae249c371784d58e4e76693a69f48a /lib/bundler/vendored_thor.rb
parentc5737a9ae19509de56c04a587756c0b9831cadca (diff)
[bundler/bundler] Migrate two more requires to be relative
https://github.com/bundler/bundler/commit/80217bfe0b
Diffstat (limited to 'lib/bundler/vendored_thor.rb')
-rw-r--r--lib/bundler/vendored_thor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/vendored_thor.rb b/lib/bundler/vendored_thor.rb
index b0b7e7be84..0666cfc9b9 100644
--- a/lib/bundler/vendored_thor.rb
+++ b/lib/bundler/vendored_thor.rb
@@ -2,7 +2,7 @@
module Bundler
def self.require_thor_actions
- Kernel.send(:require, "bundler/vendor/thor/lib/thor/actions")
+ require_relative "vendor/thor/lib/thor/actions"
end
end
require_relative "vendor/thor/lib/thor"