Sha256: a511c0af0ec43eb5219f959889a41d3d32ede0ad111000005eb1fe5749c70280
Contents?: true
Size: 520 Bytes
Versions: 18
Compression:
Stored size: 520 Bytes
Contents
# -*- coding: utf-8 -*- # Copyright (C) 2011 Rocky Bernstein <rockyb@rubyforge.net> # Communication status codes module Trepanning # Most of these go from debugged process to front-end # client interface. COMMAND goes the other way. module RemoteCommunication unless defined?(PRINT) PRINT = '.' COMMAND = 'C' CONFIRM_TRUE = 'Y' CONFIRM_FALSE = 'N' CONFIRM_REPLY = '?' QUIT = 'q' PROMPT = 'p' RESTART = 'r' end end end
Version data entries
18 entries across 18 versions & 3 rubygems