Module: Pry::RescuableException
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/exceptions.rb
Overview
As a REPL, we often want to catch any unexpected exceptions that may have been raised; however we don’t want to go overboard and prevent the user from exiting Pry when they want to.
Class Method Summary collapse
Class Method Details
.===(exception) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/exceptions.rb', line 8 def self.===(exception) case exception # Catch when the user hits ^C (Interrupt < SignalException), and assume # that they just wanted to stop the in-progress command (just like bash # etc.) when Interrupt true # Don't catch signals (particularly not SIGTERM) as these are unlikely # to be intended for pry itself. We should also make sure that # Kernel#exit works. when *Pry.config.unrescued_exceptions false # All other exceptions will be caught. else true end end |