From 5ca300aa414341d50fc2ea1038af86f3db8d8d21 Mon Sep 17 00:00:00 2001 From: Rob Smith Date: Sat, 14 Sep 2024 00:06:23 -0400 Subject: [PATCH] Missing require statement in AbstractFindMatching. --- lib/cuprum/collections/commands/abstract_find_matching.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cuprum/collections/commands/abstract_find_matching.rb b/lib/cuprum/collections/commands/abstract_find_matching.rb index bd67cad..69b01ed 100644 --- a/lib/cuprum/collections/commands/abstract_find_matching.rb +++ b/lib/cuprum/collections/commands/abstract_find_matching.rb @@ -1,6 +1,7 @@ # frozen_string_literal: true require 'cuprum/collections/commands' +require 'cuprum/collections/constraints/ordering' require 'cuprum/collections/errors/invalid_query' module Cuprum::Collections::Commands