Class: Byebug::OptionSetter
- Inherits:
-
Object
- Object
- Byebug::OptionSetter
- Defined in:
- lib/byebug/option_setter.rb
Overview
Handles byebug’s command line options
Instance Method Summary collapse
-
#initialize(runner, opts) ⇒ OptionSetter
constructor
A new instance of OptionSetter.
- #setup ⇒ Object
Constructor Details
#initialize(runner, opts) ⇒ OptionSetter
Returns a new instance of OptionSetter.
8 9 10 11 |
# File 'lib/byebug/option_setter.rb', line 8 def initialize(runner, opts) @runner = runner @opts = opts end |
Instance Method Details
#setup ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/byebug/option_setter.rb', line 13 def setup debug include_flag post_mortem quit rc stop require_flag remote trace version help end |