Disabled the Ruby debugger because it is not working anymore. Files are still included in case somebody wants to work on it.

Sat, 03 Oct 2015 14:37:29 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 03 Oct 2015 14:37:29 +0200
changeset 4480
2dec66f0b518
parent 4479
fd9ceecf5a65
child 4481
456c58fc64b0

Disabled the Ruby debugger because it is not working anymore. Files are still included in case somebody wants to work on it.

Debugger/DebugServer.py file | annotate | diff | comparison | revisions
--- a/Debugger/DebugServer.py	Sat Oct 03 14:09:05 2015 +0200
+++ b/Debugger/DebugServer.py	Sat Oct 03 14:37:29 2015 +0200
@@ -33,7 +33,7 @@
 DebuggerInterfaces = [
     "DebuggerInterfacePython",
     "DebuggerInterfacePython3",
-    "DebuggerInterfaceRuby",
+##    "DebuggerInterfaceRuby",
     "DebuggerInterfaceNone",
 ]
 
@@ -331,7 +331,7 @@
         """
         languages = list(self.__clientCapabilities.keys())
         try:
-            del languages[languages.index("None")]
+            languages.remove("None")
         except ValueError:
             pass    # it is not in the list
         

eric ide

mercurial