module RSpec::Core::Warnings

def deprecate(deprecated, data={})

Other tags:
    Private: -
def deprecate(deprecated, data={})
  RSpec.configuration.reporter.deprecation(
    {
      :deprecated => deprecated,
      :call_site => CallerFilter.first_non_rspec_line
    }.merge(data)
  )
end