summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-09-14 19:08:29 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-09-15 15:32:06 +0200
commit2b9550ba75c8ec15e2f54169efbdecf987f6f596 (patch)
treefbc67f344fd646c843229841845419f75e6112a6
parenteb630f013551156351429e2e4ccb79c2fc0b0384 (diff)
downloadbundler-2b9550ba75c8ec15e2f54169efbdecf987f6f596.tar.gz
Migrate a couple of requires to be relative
-rw-r--r--spec/support/matchers.rb3
-rw-r--r--spec/support/the_bundle.rb2
2 files changed, 3 insertions, 2 deletions
diff --git a/spec/support/matchers.rb b/spec/support/matchers.rb
index d8e8c5cc4b..69d3be4a3d 100644
--- a/spec/support/matchers.rb
+++ b/spec/support/matchers.rb
@@ -1,7 +1,8 @@
# frozen_string_literal: true
require "forwardable"
-require "support/the_bundle"
+require_relative "the_bundle"
+
module Spec
module Matchers
extend RSpec::Matchers
diff --git a/spec/support/the_bundle.rb b/spec/support/the_bundle.rb
index aa6bff7532..f252a4515b 100644
--- a/spec/support/the_bundle.rb
+++ b/spec/support/the_bundle.rb
@@ -1,6 +1,6 @@
# frozen_string_literal: true
-require "support/path"
+require_relative "path"
module Spec
class TheBundle