module Kernel

def silence_stderr #:nodoc:

:nodoc:
For compatibility
def silence_stderr #:nodoc:
  ActiveSupport::Deprecation.warn(
    "`#silence_stderr` is deprecated and will be removed in the next release."
  ) #not thread-safe
  silence_stream(STDERR) { yield }
end