class RSpec::Core::Runner

def self.trap_interrupt # :nodoc:

:nodoc:
def self.trap_interrupt # :nodoc:
  trap('INT') do
    exit!(1) if RSpec.wants_to_quit
    RSpec.wants_to_quit = true
    STDERR.puts "\nExiting... Interrupt again to exit immediately."
  end
end