global

def options(opt)

def options(opt)
  defaults = { argument: true, as: Integer }
  opt.on :c, :condition, 'Change condition of a breakpoint.', defaults
  opt.on :s, :show, 'Show breakpoint details and source.', defaults
  opt.on :D, :delete, 'Delete a breakpoint.', defaults
  opt.on :d, :disable, 'Disable a breakpoint.', defaults
  opt.on :e, :enable, 'Enable a disabled breakpoint.', defaults
  opt.on :'disable-all', 'Disable all breakpoints.'
  opt.on :'delete-all', 'Delete all breakpoints.'
end