From ae30b9b885a538139d81510b90b95d062ee35191 Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Sat, 20 Oct 2018 14:50:47 +0900 Subject: [PATCH] Missing require "active_support/executor" --- activesupport/lib/active_support/reloader.rb | 1 + 1 file changed, 1 insertion(+) 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 #--