Module: ActiveSupport::RaiseWarnings

Defined in:
activesupport/lib/active_support/testing/strict_warnings.rb

Overview

:nodoc:

Defined Under Namespace

Classes: WarningError

Constant Summary collapse

PROJECT_ROOT =
File.expand_path("../../../../", __dir__)
ALLOWED_WARNINGS =
Regexp.union(
  /circular require considered harmful.*delayed_job/, # Bug in delayed job.
  # TODO: Remove with the next sidekiq version bump
  /circular require considered harmful.*sidekiq/,

  # Expected non-verbose warning emitted by Rails.
  /Ignoring .*\.yml because it has expired/,
  /Failed to validate the schema cache because/,

  # TODO: We need to decide what to do with this.
  /Status code :unprocessable_entity is deprecated/,
)
SUPPRESSED_WARNINGS =
Regexp.union(
  # TODO: remove if https://github.com/mikel/mail/pull/1557 or similar fix
  %r{/lib/mail/parsers/.*statement not reached},
  %r{/lib/mail/parsers/.*assigned but unused variable - disp_type_s},
  %r{/lib/mail/parsers/.*assigned but unused variable - testEof}
)

Instance Method Summary collapse

Instance Method Details

#warn(message) ⇒ Object

Raises:



31
32
33
34
35
36
37
38
39
40
41
# File 'activesupport/lib/active_support/testing/strict_warnings.rb', line 31

def warn(message, ...)
  return if SUPPRESSED_WARNINGS.match?(message)

  super

  return unless message.include?(PROJECT_ROOT)
  return if ALLOWED_WARNINGS.match?(message)
  return unless ENV["RAILS_STRICT_WARNINGS"] || ENV["BUILDKITE"]

  raise WarningError.new(message)
end