Sha256: efc8890f4473e6a2dad25f31460597076dcdce74343b86b1fb89e9c81ee44372
Contents?: true
Size: 670 Bytes
Versions: 6770
Compression:
Stored size: 670 Bytes
Contents
# frozen_string_literal: true require_relative "../subcommands" require_relative "../commands/enable/breakpoints" require_relative "../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
6,770 entries across 6,767 versions & 30 rubygems