Sha256: 2304a771081cd9e8a5dcb35a1dcc47f4d36884bc0559df685f607a31e5700510
Contents?: true
Size: 469 Bytes
Versions: 2
Compression:
Stored size: 469 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 PRINT = '.' COMMAND = 'C' CONFIRM_TRUE = 'Y' CONFIRM_FALSE = 'N' CONFIRM_REPLY = '?' QUIT = 'q' PROMPT = 'p' RESTART = 'r' end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
rbx-trepanning-0.0.4-universal-rubinius-1.2 | interface/comcodes.rb |
trepanning-0.1.0 | interface/comcodes.rb |