unix-ps 0.0.7 → 0.0.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bd82f166833e94a423d3978a303ced680cbee260
4
- data.tar.gz: a04e9408d1cd52f7eef4be1f8ecded02150d8472
3
+ metadata.gz: e6d45656724dd042473903b5276bc27cf75fe4ca
4
+ data.tar.gz: e609b55f48d75969b04f90aa37821143e35cd385
5
5
  SHA512:
6
- metadata.gz: c960baa6743e108bd2a5c0cc9f30e442485f20ab140b6a50810a41ea9bb22b373cc9185dc7914eb4788e9d54badf5578f6055367d4219ad640ab84f6735943dc
7
- data.tar.gz: 08d5f87b565140d1fa14556b36f98b198cdcd7035190c6c67a059c9b887ed3ad39996b300729c5b6a6966b42f220219847aedb5ca0e1403da3668c6793782340
6
+ metadata.gz: f3b53cee39cc484049cc22b19bdb51b31a943da094ca6dc51dce49073222d8f15c1b9af3970e5f46ad708e3510365ea70d507c70b484d4ed62b62a3473946efe
7
+ data.tar.gz: 15e0d85439682c5beefd5272188e409f7df544a28382613ea12912fb29f82892b983cb4b152c6701c85d5c196138ef512729d730b68894f5a2a2b9cc4376ebb9
@@ -43,13 +43,13 @@ module UnixPs
43
43
  command = command_columns[index].strip
44
44
  line.push(command)
45
45
  }
46
+
47
+ # Pop off header columns
48
+ lines.shift
46
49
  end
47
50
 
48
51
  file.unlink
49
52
 
50
- # Pop off header columns
51
- lines.shift
52
-
53
53
  # Generate objects
54
54
  lines.collect { |line| UnixProcess.new(line) }
55
55
  end
@@ -1,3 +1,3 @@
1
1
  module UnixPs
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unix-ps
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Parraga
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-14 00:00:00.000000000 Z
11
+ date: 2014-06-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A Ruby wrapper around the unix tool ps.
14
14
  email:
@@ -18,9 +18,9 @@ extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
20
  - README.md
21
- - lib/unix-ps.rb
22
21
  - lib/unix-ps/unix_process.rb
23
22
  - lib/unix-ps/version.rb
23
+ - lib/unix-ps.rb
24
24
  homepage: https://github.com/Sovietaced/unix-ps
25
25
  licenses: []
26
26
  metadata: {}
@@ -30,17 +30,17 @@ require_paths:
30
30
  - lib
31
31
  required_ruby_version: !ruby/object:Gem::Requirement
32
32
  requirements:
33
- - - ">="
33
+ - - '>='
34
34
  - !ruby/object:Gem::Version
35
35
  version: '0'
36
36
  required_rubygems_version: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  requirements: []
42
42
  rubyforge_project:
43
- rubygems_version: 2.2.2
43
+ rubygems_version: 2.1.11
44
44
  signing_key:
45
45
  specification_version: 4
46
46
  summary: A Ruby wrapper around the unix tool ps.