ruined 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +5 -1
- data/lib/ruined/ruinmain.rb +3 -3
- metadata +3 -3
data/ChangeLog
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
+
Sun Oct 17 19:24:00 2010 arton
|
2
|
+
* ruined/ruinmain.rb
|
3
|
+
version 0.0.8 => 0.0.9
|
4
|
+
correct thread status (exchange nil and false)
|
1
5
|
Sun Oct 17 19:09:00 2010 arton
|
2
6
|
* ruined/ruinmain.rb
|
3
|
-
version 0.0.
|
7
|
+
version 0.0.7 => 0.0.8
|
4
8
|
retuens thread-list
|
5
9
|
* ruined/css/ruin.css
|
6
10
|
move style from main.html to here
|
data/lib/ruined/ruinmain.rb
CHANGED
@@ -9,7 +9,7 @@ require 'monitor'
|
|
9
9
|
require 'stringio'
|
10
10
|
|
11
11
|
module Ruined
|
12
|
-
RUINED_VERSION = '0.0.
|
12
|
+
RUINED_VERSION = '0.0.9'
|
13
13
|
|
14
14
|
@queue = [Queue.new, Queue.new]
|
15
15
|
@breakpoints = []
|
@@ -306,9 +306,9 @@ EOD
|
|
306
306
|
|
307
307
|
def self.status_to_s(s)
|
308
308
|
if s.nil?
|
309
|
-
'dead'
|
310
|
-
elsif s == false
|
311
309
|
'aborted'
|
310
|
+
elsif s == false
|
311
|
+
'dead'
|
312
312
|
else
|
313
313
|
s
|
314
314
|
end
|
metadata
CHANGED