coderunner 0.16.10 → 0.16.11
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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/coderunner.gemspec +2 -2
- data/lib/coderunner/class_methods.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57749fd6d800f7b6c0cc202d1dee1df3fba248fa
|
|
4
|
+
data.tar.gz: d387558fe325d4077b7504bdce8501b923f622c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 604591a573e66ec8dc4c42429a39531822b47888a7366c7284d024d28cf4f1835cd10e4b9ddf593c61342633a59dd4a91e4b5bc01bcf5702f75771c79fa0b3a4
|
|
7
|
+
data.tar.gz: 5cf7f4b6ba26d06d33bd8d3ecb54cf4a5159d1c4917e3481be8e9f2697cd1d832b20d864e8aac2cffbedfb470bc98ce87357d73ed551a7a125bd37623b7abe3f
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.16.
|
|
1
|
+
0.16.11
|
data/coderunner.gemspec
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: coderunner 0.16.
|
|
5
|
+
# stub: coderunner 0.16.11 ruby lib
|
|
6
6
|
# stub: ext/extconf.rb
|
|
7
7
|
|
|
8
8
|
Gem::Specification.new do |s|
|
|
9
9
|
s.name = "coderunner"
|
|
10
|
-
s.version = "0.16.
|
|
10
|
+
s.version = "0.16.11"
|
|
11
11
|
|
|
12
12
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
13
13
|
s.require_paths = ["lib"]
|
|
@@ -399,10 +399,10 @@ EOF
|
|
|
399
399
|
`cp #{tl}/queue_status.txt #{tl}/queue_status2.txt`
|
|
400
400
|
#`ps > #{tl}/queue_status.txt`
|
|
401
401
|
mutex.synchronize do
|
|
402
|
-
File.open("#{tl}/queue_status.txt", '
|
|
402
|
+
File.open("#{tl}/queue_status.txt", 'w') do |f|
|
|
403
403
|
# This ensures that the right pids will be listed,
|
|
404
404
|
# regardless of the way that ps behaves
|
|
405
|
-
f.puts processes.map{|pid| "#{pid} #{command_list[pid]}"}
|
|
405
|
+
f.puts processes.map{|pid| "#{pid} #{command_list[pid].gsub(/\n|\r/, '')}"}
|
|
406
406
|
end
|
|
407
407
|
end
|
|
408
408
|
sleep 1
|