From bd8b50d2e512383bdb7abbde03f576d02145ae3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Fri, 14 Oct 2016 23:43:26 -0300 Subject: [PATCH] Add comment to remove code when we are in Ruby 2.4 --- .../lib/active_support/core_ext/hash/transform_values.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/activesupport/lib/active_support/core_ext/hash/transform_values.rb b/activesupport/lib/active_support/core_ext/hash/transform_values.rb index a307996980..2f693bff0c 100644 --- a/activesupport/lib/active_support/core_ext/hash/transform_values.rb +++ b/activesupport/lib/active_support/core_ext/hash/transform_values.rb @@ -26,4 +26,5 @@ def transform_values! self[key] = yield(value) end end unless method_defined? :transform_values! + # TODO: Remove this file when supporting only Ruby 2.4+. end -- GitLab