module RSpec::Core::Deprecation

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

def warn_deprecation(message)

Other tags:
    Private: -
def warn_deprecation(message)
  RSpec.configuration.reporter.deprecation :message => message
end