Sha256: 62f14cf3dd02fe2142bd229b4b776c93efde5ad15bcad72fe37cc2a1c918a1ba
Contents?: true
Size: 841 Bytes
Versions: 3
Compression:
Stored size: 841 Bytes
Contents
# -*- coding: utf-8 -*- # Copyright (C) 2010, 2011 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rb8-trepanning-0.1.3 | processor/command/info.rb |
rb8-trepanning-0.1.3-universal-ruby-1.9.2 | processor/command/info.rb |
rb8-trepanning-0.1.3-universal-ruby-1.8.7 | processor/command/info.rb |