1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix ActiveSupport::Reloader.check!

The test failure in `bug_report_templates/action_controller_master.rb`
is due to `app.reloader.check` is `nil`.
This commit is contained in:
Ryuta Kamizono 2016-03-02 07:45:13 +09:00
parent a408645223
commit ad340ecae1

View file

@ -65,10 +65,9 @@ module ActiveSupport
end
end
class << self
attr_accessor :executor
attr_accessor :check
end
class_attribute :executor
class_attribute :check
self.executor = Executor
self.check = lambda { false }