|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2005 - 2009 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 =begin edoc |
|
7 File defining the debug clients capabilities. |
|
8 =end |
|
9 |
|
10 if RUBY_VERSION < "1.9" |
|
11 $KCODE = 'UTF8' |
|
12 require 'jcode' |
|
13 end |
|
14 |
|
15 HasDebugger = 0x0001 |
|
16 HasInterpreter = 0x0002 |
|
17 HasProfiler = 0x0004 |
|
18 HasCoverage = 0x0008 |
|
19 HasCompleter = 0x0010 |
|
20 HasUnittest = 0x0020 |
|
21 HasShell = 0x0040 |
|
22 |
|
23 HasAll = HasDebugger | HasInterpreter | HasProfiler | \ |
|
24 HasCoverage | HasCompleter | HasUnittest | HasShell |