Sha256: d00aa95d4a25f508091f584edf748dfa4a71ef7197ed2efb604bd57dc17a478c
Contents?: true
Size: 717 Bytes
Versions: 18
Compression:
Stored size: 717 Bytes
Contents
# frozen_string_literal: true require "byebug/subcommands" require "byebug/commands/var/all" require "byebug/commands/var/args" require "byebug/commands/var/const" require "byebug/commands/var/instance" require "byebug/commands/var/local" require "byebug/commands/var/global" module Byebug # # Shows variables and its values # class VarCommand < Command include Subcommands self.allow_in_post_mortem = true def self.regexp /^\s* v(?:ar)? (?:\s+ (.+))? \s*$/x end def self.description <<-DESCRIPTION [v]ar <subcommand> #{short_description} DESCRIPTION end def self.short_description "Shows variables and its values" end end end
Version data entries
18 entries across 18 versions & 8 rubygems