sprout-as3-bundle 1.0.11 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/sprout/as3/version.rb +1 -1
- data/lib/sprout/tasks/fdb_task.rb +5 -4
- metadata +1 -1
data/lib/sprout/as3/version.rb
CHANGED
@@ -556,21 +556,22 @@ module Sprout #:nodoc:
|
|
556
556
|
end
|
557
557
|
|
558
558
|
if(char == "\n")
|
559
|
+
if(@inside_test_result && !line.index(test_result_prelude))
|
560
|
+
test_result << line + char
|
561
|
+
end
|
559
562
|
line = ''
|
560
563
|
else
|
561
564
|
line << char
|
562
565
|
full_output << char
|
563
566
|
end
|
564
567
|
|
565
|
-
if(
|
566
|
-
test_result << char
|
567
|
-
else
|
568
|
+
if(!@inside_test_result)
|
568
569
|
@output.print char
|
569
570
|
@output.flush
|
570
571
|
end
|
571
572
|
|
572
573
|
if(!test_result_prelude.nil? && line.index(test_result_prelude))
|
573
|
-
test_result =
|
574
|
+
test_result = ''
|
574
575
|
@inside_test_result = true
|
575
576
|
end
|
576
577
|
|