From 30a08a898862a67502e58074ffaa8cc2338840f5 Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA Date: Tue, 5 Feb 2019 23:23:22 +0900 Subject: Improve regexp of `html_safe_translation_key?` - Use `\z` instead of `$` - Use character class instead of alternation - Optimize alternation order --- actionview/lib/action_view/helpers/translation_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionview/lib/action_view/helpers/translation_helper.rb b/actionview/lib/action_view/helpers/translation_helper.rb index ae1c93e12f..67c86592b9 100644 --- a/actionview/lib/action_view/helpers/translation_helper.rb +++ b/actionview/lib/action_view/helpers/translation_helper.rb @@ -138,7 +138,7 @@ module ActionView end def html_safe_translation_key?(key) - /(\b|_|\.)html$/.match?(key.to_s) + /([_.]|\b)html\z/.match?(key.to_s) end end end -- cgit v1.2.3