Sha256: 85d869c4e74f9b6da11b3b1732f83d28c2864a602d23b79095e8a6268881b9e9
Contents?: true
Size: 655 Bytes
Versions: 18
Compression:
Stored size: 655 Bytes
Contents
# frozen_string_literal: true require "byebug/subcommands" require "byebug/commands/enable/breakpoints" require "byebug/commands/enable/display" module Byebug # # Enabling custom display expressions or breakpoints. # class EnableCommand < Command include Subcommands self.allow_in_post_mortem = true def self.regexp /^\s* en(?:able)? (?:\s+ (.+))? \s*$/x end def self.description <<-DESCRIPTION en[able][[ b[reakpoints]| d[isplay])][ n1[ n2[ ...[ nn]]]]] #{short_description} DESCRIPTION end def self.short_description "Enables breakpoints or displays" end end end
Version data entries
18 entries across 18 versions & 8 rubygems