comparison: DebugClients/Ruby/AsyncFile.rb
DebugClients/Ruby/AsyncFile.rb
- changeset 2438
- 61bfcff921d8
- parent 2302
- f29e9405c851
- child 2987
- c99695c0f13a
equal
deleted
inserted
replaced
4 # |
4 # |
5 |
5 |
6 =begin edoc |
6 =begin edoc |
7 File implementing an asynchronous file like socket interface for the debugger. |
7 File implementing an asynchronous file like socket interface for the debugger. |
8 =end |
8 =end |
9 |
|
10 if RUBY_VERSION < "1.9" |
|
11 $KCODE = 'UTF8' |
|
12 require 'jcode' |
|
13 end |
|
14 |
9 |
15 require 'socket' |
10 require 'socket' |
16 |
11 |
17 require 'DebugProtocol' |
12 require 'DebugProtocol' |
18 |
13 |