perfectqueue 0.8.34 → 0.8.35

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/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ == 2014-05-20 version 0.8.35
2
+
3
+ * child_process_monitor: fixed 'ps' command options
4
+
1
5
  == 2014-05-20 version 0.8.34
2
6
 
3
7
  * rdb_compat: use connection pooling. Users can specify as :use_connection_pooling
@@ -123,7 +123,7 @@ module PerfectQueue
123
123
 
124
124
  def get_ppid_pids_map
125
125
  ppid_pids = {} # {ppid => [pid]}
126
- `ps -axo pid,ppid`.each_line do |line|
126
+ `ps axo pid,ppid`.each_line do |line|
127
127
  if m = /^\s*(\d+)\s+(\d+)\s*$/.match(line)
128
128
  (ppid_pids[m[2].to_i] ||= []) << m[1].to_i
129
129
  end
@@ -1,3 +1,3 @@
1
1
  module PerfectQueue
2
- VERSION = "0.8.34"
2
+ VERSION = "0.8.35"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: perfectqueue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.34
4
+ version: 0.8.35
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -157,7 +157,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
157
157
  version: '0'
158
158
  segments:
159
159
  - 0
160
- hash: -1427988048662614189
160
+ hash: -2080370544626187902
161
161
  required_rubygems_version: !ruby/object:Gem::Requirement
162
162
  none: false
163
163
  requirements:
@@ -166,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
166
166
  version: '0'
167
167
  segments:
168
168
  - 0
169
- hash: -1427988048662614189
169
+ hash: -2080370544626187902
170
170
  requirements: []
171
171
  rubyforge_project:
172
172
  rubygems_version: 1.8.24