diff options
author | Akira Matsuda <ronnie@dio.jp> | 2019-08-01 18:43:25 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2019-08-01 18:51:51 +0900 |
commit | 530f7805ed5790af1d472a041bc74089dc183f47 (patch) | |
tree | 9c897d7b77cd00127f8a51685506db1e5a4d00c2 /actiontext/app/helpers/action_text | |
parent | 03018cb79be301fb40a57c9ac92a392b1eb8ee61 (diff) | |
download | rails-530f7805ed5790af1d472a041bc74089dc183f47.tar.gz rails-530f7805ed5790af1d472a041bc74089dc183f47.tar.bz2 rails-530f7805ed5790af1d472a041bc74089dc183f47.zip |
It may be better to explicitly require 'object/try' where we call `try`
In most cases it works now without explicit require because it's accidentally required through
active_support/core_ext/date_and_time/calculations.rb where we still call `try`,
but that would stop working if we changed the Calculations implementation and remove the require call there.
Diffstat (limited to 'actiontext/app/helpers/action_text')
-rw-r--r-- | actiontext/app/helpers/action_text/tag_helper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actiontext/app/helpers/action_text/tag_helper.rb b/actiontext/app/helpers/action_text/tag_helper.rb index 1dc6202ae1..fe40be74f5 100644 --- a/actiontext/app/helpers/action_text/tag_helper.rb +++ b/actiontext/app/helpers/action_text/tag_helper.rb @@ -1,5 +1,6 @@ # frozen_string_literal: true +require "active_support/core_ext/object/try" require "action_view/helpers/tags/placeholderable" module ActionText |