aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/reloader.rb
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2018-10-20 14:50:47 +0900
committerAkira Matsuda <ronnie@dio.jp>2018-10-30 10:17:09 +0900
commitae30b9b885a538139d81510b90b95d062ee35191 (patch)
tree852d720819657380c39ba8a14914f810fd1bd58f /activesupport/lib/active_support/reloader.rb
parentee470cefc09bd987ced051d7e23e825e307cc0b0 (diff)
downloadrails-ae30b9b885a538139d81510b90b95d062ee35191.tar.gz
rails-ae30b9b885a538139d81510b90b95d062ee35191.tar.bz2
rails-ae30b9b885a538139d81510b90b95d062ee35191.zip
Missing require "active_support/executor"
Diffstat (limited to 'activesupport/lib/active_support/reloader.rb')
-rw-r--r--activesupport/lib/active_support/reloader.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/reloader.rb b/activesupport/lib/active_support/reloader.rb
index b26d9c3665..fea18e9712 100644
--- a/activesupport/lib/active_support/reloader.rb
+++ b/activesupport/lib/active_support/reloader.rb
@@ -1,6 +1,7 @@
# frozen_string_literal: true
require "active_support/execution_wrapper"
+require "active_support/executor"
module ActiveSupport
#--