Module: Pryable
- Extended by:
- Decoratable
- Defined in:
- lib/decoratable/pryable.rb
Instance Method Summary collapse
Methods included from Decoratable
Instance Method Details
#pryable(options = { on: [RuntimeError] }) ⇒ Object
6 7 8 9 10 11 |
# File 'lib/decoratable/pryable.rb', line 6 def pryable( = { on: [RuntimeError] }) yield rescue *[:on] require "pry" binding.pry end |