Module: Ripl::Debug::Commands
- Defined in:
- lib/ripl/debug.rb
Instance Method Summary collapse
Instance Method Details
#with_post_mortem ⇒ Object
47 48 49 50 51 52 53 54 55 |
# File 'lib/ripl/debug.rb', line 47 def with_post_mortem Debugger.start result = nil Debugger.post_mortem do result = yield end Debugger.stop result end |