Sha256: cd2a5b4d27b3fc56ff39fec767e467fd02d8e96f03021c5016837dcb12ba5d8d
Contents?: true
Size: 835 Bytes
Versions: 8
Compression:
Stored size: 835 Bytes
Contents
# -*- coding: utf-8 -*- # Copyright (C) 2010 Rocky Bernstein <rockyb@rubyforge.net> require 'rubygems'; require 'require_relative' require_relative 'base/submgr' class Trepan::Command::InfoCommand < Trepan::SubcommandMgr unless defined?(HELP) HELP = 'Generic command for showing things about the program being debugged. You can give unique prefix of the name of a subcommand to get information about just that subcommand. Type "info" for a list of "info" subcommands and what they do. Type "help info *" for just a list of "info" subcommands. ' ALIASES = %w(i) CATEGORY = 'status' NAME = File.basename(__FILE__, '.rb') SHORT_HELP = 'Information about debugged program and its environment' end end if __FILE__ == $0 require_relative '../mock' dbgr, cmd = MockDebugger::setup end
Version data entries
8 entries across 8 versions & 1 rubygems