From b77b4218720f1aafc5454a75b446686af54f44b5 Mon Sep 17 00:00:00 2001 From: Sam Pohlenz Date: Mon, 27 May 2024 16:23:27 +0930 Subject: [PATCH] Set explicit deprecation horizon and gem name for Trestle.deprecator --- lib/trestle.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/trestle.rb b/lib/trestle.rb index 7b608a65..cb7cd56c 100644 --- a/lib/trestle.rb +++ b/lib/trestle.rb @@ -88,7 +88,7 @@ def self.i18n_fallbacks(locale=I18n.locale) end def self.deprecator - @deprecator ||= ActiveSupport::Deprecation.new + @deprecator ||= ActiveSupport::Deprecation.new('1.0', 'Trestle') end end