Sat, 03 Oct 2015 14:37:29 +0200
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