@private
Used to print deprecation warnings for Rspec and Spec constants (use RSpec instead)
# File lib/rspec/core/backward_compatibility.rb, line 7 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
Generated with the Darkfish Rdoc Generator 2.