Sha256: e1c933ff4721a063b242eee6314fd842a9e9fd9ae04f85b657fed2d594a07827
Contents?: true
Size: 896 Bytes
Versions: 6770
Compression:
Stored size: 896 Bytes
Contents
# frozen_string_literal: true require_relative "../history" module Byebug # # Interface class for remote use of byebug. # class RemoteInterface < Interface def initialize(socket) super() @input = socket @output = socket @error = socket end def read_command(prompt) super("PROMPT #{prompt}") rescue Errno::EPIPE, Errno::ECONNABORTED "continue" end def confirm(prompt) super("CONFIRM #{prompt}") rescue Errno::EPIPE, Errno::ECONNABORTED false end def print(message) super(message) rescue Errno::EPIPE, Errno::ECONNABORTED nil end def puts(message) super(message) rescue Errno::EPIPE, Errno::ECONNABORTED nil end def close output.close end def readline(prompt) puts(prompt) (input.gets || "continue").chomp end end end
Version data entries
6,770 entries across 6,767 versions & 30 rubygems