Merge pull request #9 from arikarim/orm-set

feat: Add setter for ORM configuration.
This commit is contained in:
Brusk Awat
2025-12-18 14:10:06 +03:00
committed by GitHub
2 changed files with 5 additions and 1 deletions

View File

@@ -23,5 +23,9 @@ module RabbitCarrots
def orm
@orm ||= :activerecord
end
def orm=(value)
@orm = value
end
end
end

View File

@@ -1,5 +1,5 @@
# frozen_string_literal: true
module RabbitCarrots
VERSION = '1.0.4'
VERSION = '1.0.5'
end