DebugClients/Ruby/DebugClient.rb

Sat, 07 Nov 2015 15:54:09 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 07 Nov 2015 15:54:09 +0100
changeset 4552
b1ea4ea0190e
parent 4021
195a471c327b
child 4632
ca310db386ed
permissions
-rw-r--r--

Removed the Ruby debugger configuration page because this debugger is defunct.
(grafted from 31115c8c20fc92ad872cb6a18ab94ab7d631aae7)

# -*- coding: utf-8 -*-

# Copyright (c) 2005 - 2015 Detlev Offenbach <detlev@die-offenbachs.de>
#

=begin edoc
File implementing a debug client.
=end

# insert path to ourself in front of the search path
$:.insert(0, File.dirname($0))

require 'Debuggee'
require 'AsyncIO'
require 'DebugClientBaseModule'

class DebugClient
=begin edoc
Class implementing the client side of the debugger.
=end
    include AsyncIO
    include DebugClientBase
    
    def initialize
=begin edoc
Constructor
=end
        initializeAsyncIO
        initializeDebugClient
        
        @variant = "No Qt-Version"
    end
end

# We are normally called by the debugger to execute directly

if __FILE__ == $0
    debugClient = DebugClient.new()
    debugClient.main()
end

eric ide

mercurial