module RSpec::Core
def self.const_missing(name)
Alias the error for compatibility with extension gems (e.g. formatters)
def self.const_missing(name) return super unless name == :PendingExampleFixedError RSpec.deprecate("RSpec::Core::PendingExampleFixedError", :replacement => "RSpec::Core::Pending::PendingExampleFixedError") Pending::PendingExampleFixedError end
def self.path_to_executable
- Private: - path to executable file
def self.path_to_executable File.expand_path('../../../exe/rspec', __FILE__) end