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 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