module RSpec::Expectations::DeprecatedConstants

Public Instance Methods

const_missing(name) click to toggle source

Displays deprecation warning when it captures Rspec and Spec. Otherwise delegates to super.

Calls superclass method
# File lib/rspec/expectations/extensions/object.rb, line 6
def const_missing(name)
  case name
  when :Rspec, :Spec
    RSpec.deprecate(name.to_s, :replacement => "RSpec")
    RSpec
  else
    begin
      super
    rescue Exception => e
      e.backtrace.reject! {|l| l =~ Regexp.compile(__FILE__) }
      raise e
    end
  end
end