Class: RSpec::Core::Notifications::DeprecationNotification

Inherits:
Struct
  • Object
show all
Defined in:
lib/rspec/core/notifications.rb,
lib/rspec/core/notifications.rb

Overview

The DeprecationNotification is issued by the reporter when a deprecated part of RSpec is encountered. It represents information about the deprecated call site.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#call_siteString

An optional call site from which the deprecation was issued

Returns:

  • (String)

    the current value of call_site

493
494
495
# File 'lib/rspec/core/notifications.rb', line 493
def call_site
  @call_site
end

#deprecatedString

A custom message about the deprecation (alias of message)

Returns:

  • (String)

    the current value of deprecated

493
494
495
# File 'lib/rspec/core/notifications.rb', line 493
def deprecated
  @deprecated
end

#messageString

A custom message about the deprecation

Returns:

  • (String)

    the current value of message

493
494
495
# File 'lib/rspec/core/notifications.rb', line 493
def message
  @message
end

#replacementString

An optional replacement for the deprecation

Returns:

  • (String)

    the current value of replacement

493
494
495
# File 'lib/rspec/core/notifications.rb', line 493
def replacement
  @replacement
end

Class Method Details

.from_hash(data) ⇒ void

Convenience way to initialize the notification

499
500
501
# File 'lib/rspec/core/notifications.rb', line 499
def self.from_hash(data)
  new data[:deprecated], data[:message], data[:replacement], data[:call_site]
end