getargv 0.3.14-universal-darwin → 0.3.15-universal-darwin
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/Gemfile.lock +1 -1
- data/checksums/getargv-0.3.15-universal-darwin.gem.sha512 +1 -0
- data/getargv_ruby.gemspec +7 -6
- data/lib/getargv_ruby/version.rb +1 -1
- metadata +9 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a8d27f7b9805888419b31059b0b8b4e0d94d7c9c5656f29361269333ea6a24a0
|
|
4
|
+
data.tar.gz: 4a087e367ada10a590de944a20db7f1bda13b3bba6e70708a9f1886d7355a09f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa6cf1e80bed8090370de98118dbf56aff40835e8250e0eac180aa2a413ba65741200e1b97d23fcbb6ef31b460e4297be7038ef8f13f0dae805ad1cdc330b122
|
|
7
|
+
data.tar.gz: fbfa0ef075361f732cdeb2b7240f19f2cf725e2c6d85016498afd4f6b700308184ffd78525e6c01e0c2d8a3d86b6f8b11282a2b5c9d90f179abeee473a02cd47
|
data/Gemfile.lock
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
9e51e76dadc771b9a8829f0dbf06861e82cb864207a6afa68827b1642e12391f96e54ab2a51705168f8b3562450f89707ccdd54dcaf9d7031657b378dbbf97ae
|
data/getargv_ruby.gemspec
CHANGED
|
@@ -11,16 +11,17 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.email = ["getargv@narzt.cam"]
|
|
12
12
|
|
|
13
13
|
spec.summary = "This gem allows you to query the arguments of other processes on macOS."
|
|
14
|
-
spec.description =
|
|
15
|
-
|
|
14
|
+
spec.description = <<~EOF
|
|
15
|
+
== Getargv
|
|
16
|
+
Getargv is a gem that allows you to query the arguments of other processes as an array or string.
|
|
16
17
|
|
|
17
|
-
|
|
18
|
+
This gem only supports macOS because the +KERN_PROCARGS2+ sysctl only exists in xnu kernels, BSD or Linux users should just read <code>/proc/$PID/cmdline</code> which is much easier and faster, Solaris users should use pargs.
|
|
18
19
|
|
|
19
|
-
|
|
20
|
+
This gem requires you have {libgetargv}[https://getargv.narzt.cam/] installed.
|
|
20
21
|
|
|
21
|
-
|
|
22
|
+
To limit the getargv gem to Apple OSs add it to your Gemfile like so:
|
|
22
23
|
|
|
23
|
-
|
|
24
|
+
gem "getargv", "~> #{Getargv::VERSION}", platforms: :ruby, install_if: RbConfig::CONFIG["host_os"].include?("darwin")
|
|
24
25
|
EOF
|
|
25
26
|
spec.homepage = "https://getargv.narzt.cam/"
|
|
26
27
|
spec.license = "BSD-3-Clause"
|
data/lib/getargv_ruby/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: getargv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.15
|
|
5
5
|
platform: universal-darwin
|
|
6
6
|
authors:
|
|
7
7
|
- Camden Narzt
|
|
@@ -121,16 +121,17 @@ dependencies:
|
|
|
121
121
|
- - ">="
|
|
122
122
|
- !ruby/object:Gem::Version
|
|
123
123
|
version: '0'
|
|
124
|
-
description: |
|
|
125
|
-
|
|
124
|
+
description: |
|
|
125
|
+
== Getargv
|
|
126
|
+
Getargv is a gem that allows you to query the arguments of other processes as an array or string.
|
|
126
127
|
|
|
127
|
-
|
|
128
|
+
This gem only supports macOS because the +KERN_PROCARGS2+ sysctl only exists in xnu kernels, BSD or Linux users should just read <code>/proc/$PID/cmdline</code> which is much easier and faster, Solaris users should use pargs.
|
|
128
129
|
|
|
129
|
-
|
|
130
|
+
This gem requires you have {libgetargv}[https://getargv.narzt.cam/] installed.
|
|
130
131
|
|
|
131
|
-
|
|
132
|
+
To limit the getargv gem to Apple OSs add it to your Gemfile like so:
|
|
132
133
|
|
|
133
|
-
gem "getargv", "~> 0.3.
|
|
134
|
+
gem "getargv", "~> 0.3.15", platforms: :ruby, install_if: RbConfig::CONFIG["host_os"].include?("darwin")
|
|
134
135
|
email:
|
|
135
136
|
- getargv@narzt.cam
|
|
136
137
|
executables: []
|
|
@@ -157,6 +158,7 @@ files:
|
|
|
157
158
|
- checksums/getargv-0.3.12-universal-darwin.gem.sha512
|
|
158
159
|
- checksums/getargv-0.3.13-universal-darwin.gem.sha512
|
|
159
160
|
- checksums/getargv-0.3.14-universal-darwin.gem.sha512
|
|
161
|
+
- checksums/getargv-0.3.15-universal-darwin.gem.sha512
|
|
160
162
|
- checksums/getargv-0.3.2-universal-darwin.gem.sha512
|
|
161
163
|
- checksums/getargv-0.3.3-universal-darwin.gem.sha512
|
|
162
164
|
- checksums/getargv-0.3.4-universal-darwin.gem.sha512
|