File Manager

Path: /opt/chef.upgrade/embedded/lib/ruby/gems/2.3.0/gems/byebug-9.0.6/lib/byebug/settings/

Viewing File: autosave.rb

require 'byebug/setting'

module Byebug
  #
  # Setting for automatically saving previously entered commands to history
  # when exiting the debugger.
  #
  class AutosaveSetting < Setting
    DEFAULT = true

    def banner
      'Automatically save command history record on exit'
    end
  end
end