From 7ec227174b86feac81b5cd764f73346477b385e2 Mon Sep 17 00:00:00 2001 From: Ari Karim Date: Thu, 18 Dec 2025 14:08:01 +0300 Subject: [PATCH 1/2] 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 From c673d7e5a1880adf7fc9546473b37d9e28d22dcc Mon Sep 17 00:00:00 2001 From: Ari Karim Date: Thu, 18 Dec 2025 14:08:31 +0300 Subject: [PATCH 2/2] chore: Bump gem version to 1.0.5. --- lib/rabbit_carrots/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rabbit_carrots/version.rb b/lib/rabbit_carrots/version.rb index a05e114..4ae5052 100644 --- a/lib/rabbit_carrots/version.rb +++ b/lib/rabbit_carrots/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RabbitCarrots - VERSION = '1.0.4' + VERSION = '1.0.5' end