From 8fbcabb31cd25bf8155b90d1e15c5b3470dfc9ee Mon Sep 17 00:00:00 2001 From: Anthony Martin <amartin75@gmail.com> Date: Sat, 30 Jul 2022 16:03:03 -0700 Subject: [PATCH] support for ruby-2.7 and ruby-3.0 --- lib/hive.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hive.rb b/lib/hive.rb index c90e41b..242584c 100644 --- a/lib/hive.rb +++ b/lib/hive.rb @@ -84,7 +84,7 @@ module Hive super unless const.to_s.end_with? 'Api' api = api_classes[const] - api ||= Api.clone(freeze: true) rescue Api.clone + api ||= Api.clone(freeze: false) rescue Api.clone api.api_name = const api_classes[const] = api end -- GitLab