From 6271126506707c63ccb8c7980c7a9bf3d12b7bb3 Mon Sep 17 00:00:00 2001 From: Phillip Davis Date: Fri, 3 Oct 2025 13:38:35 -0400 Subject: [PATCH] modernize important style up til now we've run `require "customer"`, but that tries to import from a bundled gem, whereas "customer" is our own dep --- lib/credit_card_gateway.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/credit_card_gateway.rb b/lib/credit_card_gateway.rb index 842e8e7cae7f0fc32a27a3335948603e0b986eec..846659d149eb79d4eed95b6979ca3194995b969c 100644 --- a/lib/credit_card_gateway.rb +++ b/lib/credit_card_gateway.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true require "braintree" -require "customer" +require_relative "customer" class CreditCardGateway class ErrorResult < StandardError