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

Relocate require in AS::Deprecation

Without this, it's possible to encounter:
NoMethodError: undefined method `on_jruby?' for Concurrent:Module

See also https://github.com/ruby-concurrency/concurrent-ruby/pull/833
This commit is contained in:
Peter Wagenet 2019-11-13 07:12:15 -08:00
parent 3ab43e7e4e
commit 169b70ae62

View file

@ -1,7 +1,6 @@
# frozen_string_literal: true
require "singleton"
require "concurrent/atomic/thread_local_var"
module ActiveSupport
# \Deprecation specifies the API used by Rails to deprecate methods, instance
@ -22,6 +21,7 @@ module ActiveSupport
require "active_support/deprecation/method_wrappers"
require "active_support/deprecation/proxy_wrappers"
require "active_support/core_ext/module/deprecation"
require "concurrent/atomic/thread_local_var"
include Singleton
include InstanceDelegator