lib/byebug/settings/autosave.rb in byebug-9.1.0 vs lib/byebug/settings/autosave.rb in byebug-10.0.0

- old
+ new

@@ -1,15 +1,17 @@ -require 'byebug/setting' +# frozen_string_literal: true +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' + "Automatically save command history record on exit" end end end