module RSpec::Support::Warnings

def warn_with(message, options={})

Other tags:
    Private: -
def warn_with(message, options={})
  call_site = options.fetch(:call_site) { CallerFilter.first_non_rspec_line }
  message += " Use #{options[:replacement]} instead." if options[:replacement]
  message += " Called from #{call_site}." if call_site
  Support.warning_notifier.call message
end