diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-10-14 23:43:26 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-10-14 23:57:03 -0300 |
commit | bd8b50d2e512383bdb7abbde03f576d02145ae3a (patch) | |
tree | d557181acbe886cc63177ea1364f96a7d650f1da /activesupport/lib/active_support | |
parent | 8e06900742c78c2036f269ac38ef427b66bb8450 (diff) | |
download | rails-bd8b50d2e512383bdb7abbde03f576d02145ae3a.tar.gz rails-bd8b50d2e512383bdb7abbde03f576d02145ae3a.tar.bz2 rails-bd8b50d2e512383bdb7abbde03f576d02145ae3a.zip |
Add comment to remove code when we are in Ruby 2.4
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/core_ext/hash/transform_values.rb | 1 |
1 files changed, 1 insertions, 0 deletions
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 @@ class Hash self[key] = yield(value) end end unless method_defined? :transform_values! + # TODO: Remove this file when supporting only Ruby 2.4+. end |