diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-03-11 22:20:05 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-03-11 22:20:05 +0900 |
commit | 3d09a706777971ec283ec00d08524e115180bc70 (patch) | |
tree | 39839ad4b73b52676bc4517fa13307b4886fca53 /activesupport | |
parent | a101115d5b8011278891f30f69901f9583ea7685 (diff) | |
download | rails-3d09a706777971ec283ec00d08524e115180bc70.tar.gz rails-3d09a706777971ec283ec00d08524e115180bc70.tar.bz2 rails-3d09a706777971ec283ec00d08524e115180bc70.zip |
use `ActiveSupport::Reloader.to_prepare` instead of deprecated `ActionDispatch::Reloader.to_prepare` [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/file_update_checker.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/file_update_checker.rb b/activesupport/lib/active_support/file_update_checker.rb index dc7434fcac..8708a502e6 100644 --- a/activesupport/lib/active_support/file_update_checker.rb +++ b/activesupport/lib/active_support/file_update_checker.rb @@ -23,7 +23,7 @@ module ActiveSupport # I18n.reload! # end # - # ActionDispatch::Reloader.to_prepare do + # ActiveSupport::Reloader.to_prepare do # i18n_reloader.execute_if_updated # end class FileUpdateChecker |