From 2b9550ba75c8ec15e2f54169efbdecf987f6f596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Sat, 14 Sep 2019 19:08:29 +0200 Subject: Migrate a couple of requires to be relative --- spec/support/matchers.rb | 3 ++- spec/support/the_bundle.rb | 2 +- 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 -- cgit v1.2.1