Sha256: f553eda6df8878e28ab25aaac46ab81009954587fc8ed3513feec7c1133c7431
Contents?: true
Size: 324 Bytes
Versions: 27
Compression:
Stored size: 324 Bytes
Contents
# frozen_string_literal: true require_relative "debug" module IRB # :stopdoc: module ExtendCommand class Catch < DebugCommand def self.transform_args(args) args&.dump end def execute(*args) super(pre_cmds: ["catch", *args].join(" ")) end end end # :startdoc: end
Version data entries
27 entries across 27 versions & 2 rubygems