From 7ec227174b86feac81b5cd764f73346477b385e2 Mon Sep 17 00:00:00 2001 From: Ari Karim Date: Thu, 18 Dec 2025 14:08:01 +0300 Subject: [PATCH] feat: Add setter for ORM configuration. --- lib/rabbit_carrots/configuration.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/rabbit_carrots/configuration.rb b/lib/rabbit_carrots/configuration.rb index acc7a9b..29a2fd6 100644 --- a/lib/rabbit_carrots/configuration.rb +++ b/lib/rabbit_carrots/configuration.rb @@ -23,5 +23,9 @@ module RabbitCarrots def orm @orm ||= :activerecord end + + def orm=(value) + @orm = value + end end end