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:
parent
3ab43e7e4e
commit
169b70ae62
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue