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
commit c5e10bd9e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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