From 0110ffaec5fa49a059a047704594a94fa6e7adbf Mon Sep 17 00:00:00 2001 From: dcrosby Date: Wed, 29 Nov 2023 10:42:40 -0800 Subject: [PATCH] Assume lazy-loading of BetweenMeals repository classes This change is in anticipation of https://github.com/facebook/between-meals/pull/136, where we only load a class if it's actually in use (ie this allows operation without the rugged gem) --- lib/taste_tester/hooks.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/taste_tester/hooks.rb b/lib/taste_tester/hooks.rb index 273c827..dfe0df7 100644 --- a/lib/taste_tester/hooks.rb +++ b/lib/taste_tester/hooks.rb @@ -16,8 +16,7 @@ require 'taste_tester/logging' require 'between_meals/util' -require 'between_meals/repo/hg' -require 'between_meals/repo/git' +require 'between_meals/repo' module TasteTester # Hooks placeholders