coderunner 0.11.18 → 0.11.19
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/VERSION +1 -1
- data/coderunner.gemspec +1 -1
- data/lib/coderunner/instance_methods.rb +3 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.11.
|
|
1
|
+
0.11.19
|
data/coderunner.gemspec
CHANGED
|
@@ -1500,7 +1500,9 @@ EOF
|
|
|
1500
1500
|
eputs "Please confirm again. Press Enter to confirm, Ctrl + C to cancel"
|
|
1501
1501
|
gets
|
|
1502
1502
|
end
|
|
1503
|
-
ids.each{|id|
|
|
1503
|
+
ids.each{|id|
|
|
1504
|
+
FileUtils.rm_r @run_list[id].directory if @run_list[id].directory and not ["", ".", ".."].include? @run_list[id].directory
|
|
1505
|
+
@run_list.delete(id); @ids.delete(id); generate_combined_ids}
|
|
1504
1506
|
set_max_id(@ids.max || 0)
|
|
1505
1507
|
save_large_cache
|
|
1506
1508
|
generate_combined_ids
|