sys-proc 1.0.3 → 1.0.4
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/lib/sys-proc.rb +30 -26
- data/lib/sys/proc/version_info.yml +4 -4
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef430fcc11653031cddb758f6c437226d8f68bf2
|
4
|
+
data.tar.gz: 80f41aef12dc56df8a65d1747fe78d10fa33dcb4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a12621872b2b9a640d63c0f64d471cb1edc2db6a6dbd0c9164d738f0594592e38a877692dfecf6a7c813ea503b2c2ad7b43f55a4e1c8124886456e71f6a94cdc
|
7
|
+
data.tar.gz: ebd2f9fd1e2506a0dad2f5ce111ce7e70dc470aec4c553168fbb021c49df5c08d2c415595dba267cedbbe1543135a841fbdecf5a1e3642db739cb23942809079
|
data/lib/sys-proc.rb
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
# This is free software: you are free to change and redistribute it.
|
9
9
|
# There is NO WARRANTY, to the extent permitted by law.
|
10
10
|
|
11
|
-
if
|
11
|
+
if File.file?("#{__dir__}/../Gemfile.lock")
|
12
12
|
require 'rubygems'
|
13
13
|
require 'bundler'
|
14
14
|
|
@@ -17,31 +17,35 @@ end
|
|
17
17
|
|
18
18
|
$LOAD_PATH.unshift __dir__
|
19
19
|
|
20
|
-
if
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
20
|
+
if File.file?("#{__dir__}/../Gemfile.lock")
|
21
|
+
if 'development' == ENV['PROJECT_MODE']
|
22
|
+
require 'bundler/setup'
|
23
|
+
|
24
|
+
require 'pp'
|
25
|
+
begin
|
26
|
+
require 'coderay'
|
27
|
+
require 'pry/color_printer'
|
28
|
+
rescue LoadError => e
|
29
|
+
# rubocop:disable Performance/Caller
|
30
|
+
warn('%s: %s' % [caller[0], e.message])
|
31
|
+
# rubocop:enable Performance/Caller
|
32
|
+
end
|
33
|
+
|
34
|
+
# Outputs obj to out in pretty printed format of width columns in width.
|
35
|
+
#
|
36
|
+
# If out is omitted, ``STDOUT`` is assumed.
|
37
|
+
# If width is omitted, ``79`` is assumed.
|
38
|
+
#
|
39
|
+
# @param [Object] obj
|
40
|
+
# @param [IO] out
|
41
|
+
# @param [Fixnum] width
|
42
|
+
# @see http://ruby-doc.org/stdlib-2.2.0/libdoc/pp/rdoc/PP.html
|
43
|
+
def pp(obj, out = STDOUT, width = 79)
|
44
|
+
args = [obj, out, width].compact
|
45
|
+
colorable = (out.isatty and Kernel.const_defined?('Pry::ColorPrinter'))
|
46
|
+
|
47
|
+
(colorable ? Pry::ColorPrinter : PP).pp(*args)
|
48
|
+
end
|
45
49
|
end
|
46
50
|
end
|
47
51
|
|
@@ -1,12 +1,12 @@
|
|
1
1
|
---
|
2
2
|
major: 1
|
3
3
|
minor: 0
|
4
|
-
patch:
|
4
|
+
patch: 4
|
5
5
|
authors: ['Dimitri Arrigoni']
|
6
6
|
email: 'dimitri@arrigoni.me'
|
7
|
-
date: '2017-08-
|
8
|
-
summary: '
|
9
|
-
description: '
|
7
|
+
date: '2017-08-06'
|
8
|
+
summary: 'A cross-platform interface to customize the process name'
|
9
|
+
description: 'A cross-platform interface to customize the process name'
|
10
10
|
licenses: ['GPL-3.0']
|
11
11
|
license_header: 'Copyright (C) 2017 Dimitri Arrigoni <dimitri@arrigoni.me>
|
12
12
|
License GPLv3+: GNU GPL version 3 or later
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sys-proc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dimitri Arrigoni
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-08-
|
11
|
+
date: 2017-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -220,7 +220,7 @@ dependencies:
|
|
220
220
|
- - "~>"
|
221
221
|
- !ruby/object:Gem::Version
|
222
222
|
version: '3.6'
|
223
|
-
description:
|
223
|
+
description: A cross-platform interface to customize the process name
|
224
224
|
email: dimitri@arrigoni.me
|
225
225
|
executables: []
|
226
226
|
extensions: []
|
@@ -271,5 +271,5 @@ rubyforge_project:
|
|
271
271
|
rubygems_version: 2.5.1
|
272
272
|
signing_key:
|
273
273
|
specification_version: 4
|
274
|
-
summary:
|
274
|
+
summary: A cross-platform interface to customize the process name
|
275
275
|
test_files: []
|