Class: Byebug::AutoprySetting
- Defined in:
- lib/byebug/settings/autopry.rb
Overview
Setting for automatically invoking Pry on every stop.
Constant Summary collapse
- DEFAULT =
0
Instance Method Summary collapse
- #banner ⇒ Object
-
#initialize ⇒ AutoprySetting
constructor
A new instance of AutoprySetting.
- #value ⇒ Object
- #value=(val) ⇒ Object
Methods inherited from Setting
[], []=, #boolean?, find, #help, help_all, #integer?, settings, #to_s, #to_sym
Constructor Details
#initialize ⇒ AutoprySetting
Returns a new instance of AutoprySetting.
13 14 15 |
# File 'lib/byebug/settings/autopry.rb', line 13 def initialize PryCommand.always_run = DEFAULT end |
Instance Method Details
#banner ⇒ Object
17 18 19 |
# File 'lib/byebug/settings/autopry.rb', line 17 def "Invoke Pry on every stop" end |
#value ⇒ Object
25 26 27 |
# File 'lib/byebug/settings/autopry.rb', line 25 def value PryCommand.always_run == 1 end |
#value=(val) ⇒ Object
21 22 23 |
# File 'lib/byebug/settings/autopry.rb', line 21 def value=(val) PryCommand.always_run = val ? 1 : 0 end |