Sha256: 8f6afe3f082df5a4f7228195069577f81981b15c20431b1465a0a6751e4a3a7c
Contents?: true
Size: 318 Bytes
Versions: 27
Compression:
Stored size: 318 Bytes
Contents
# frozen_string_literal: true require_relative "debug" module IRB # :stopdoc: module ExtendCommand class Break < DebugCommand def self.transform_args(args) args&.dump end def execute(args = nil) super(pre_cmds: "break #{args}") end end end # :startdoc: end
Version data entries
27 entries across 27 versions & 2 rubygems