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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec2b0800ea05571c61cec1aaa85b13a5f1eeef899ef79be26de9e41d6d8a80ae
4
- data.tar.gz: 5a4e794fdb99be2894f6180c24ee76315ae3bb44741b5592aabfda64dcfb637a
3
+ metadata.gz: a8d27f7b9805888419b31059b0b8b4e0d94d7c9c5656f29361269333ea6a24a0
4
+ data.tar.gz: 4a087e367ada10a590de944a20db7f1bda13b3bba6e70708a9f1886d7355a09f
5
5
  SHA512:
6
- metadata.gz: 207a546789cfe7f52ffa3d88bdef3c29637bf6395c9db5ca280423b8c457a5e456b34edfa47747bb5f540dff1d7e6e4a85dea85a343981b5a05d59c80ab2a3e0
7
- data.tar.gz: f17080ef0c648bf465e0a2868398b9195938e651556b2aba36d3ca3803f6bdcfe948b737cccbb77049626da55a365e57695ea79322cd28d7272cf76c63a00ff0
6
+ metadata.gz: fa6cf1e80bed8090370de98118dbf56aff40835e8250e0eac180aa2a413ba65741200e1b97d23fcbb6ef31b460e4297be7038ef8f13f0dae805ad1cdc330b122
7
+ data.tar.gz: fbfa0ef075361f732cdeb2b7240f19f2cf725e2c6d85016498afd4f6b700308184ffd78525e6c01e0c2d8a3d86b6f8b11282a2b5c9d90f179abeee473a02cd47
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- getargv (0.3.14-universal-darwin)
4
+ getargv (0.3.15-universal-darwin)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -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 = <<-EOF
15
- Getargv is a gem that allows you to query the arguments of other processes as an array or string.
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
- This gem only supports macOS because the KERN_PROCARGS2 sysctl only exists in xnu kernels, BSD or Linux users should just read /proc/$PID/cmdline which is much easier and faster, Solaris users should use pargs.
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
- This gem requires you have [libgetargv](https://getargv.narzt.cam/) installed.
20
+ This gem requires you have {libgetargv}[https://getargv.narzt.cam/] installed.
20
21
 
21
- To limit the getargv gem to Apple OSs add it to your Gemfile like so:
22
+ To limit the getargv gem to Apple OSs add it to your Gemfile like so:
22
23
 
23
- gem "getargv", "~> #{Getargv::VERSION}", platforms: :ruby, install_if: RbConfig::CONFIG["host_os"].include?("darwin")
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"
@@ -3,5 +3,5 @@
3
3
  module Getargv
4
4
  ##
5
5
  # The version of the gem
6
- VERSION = "0.3.14"
6
+ VERSION = "0.3.15"
7
7
  end
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.14
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: |2
125
- Getargv is a gem that allows you to query the arguments of other processes as an array or string.
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
- This gem only supports macOS because the KERN_PROCARGS2 sysctl only exists in xnu kernels, BSD or Linux users should just read /proc/$PID/cmdline which is much easier and faster, Solaris users should use pargs.
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
- This gem requires you have [libgetargv](https://getargv.narzt.cam/) installed.
130
+ This gem requires you have {libgetargv}[https://getargv.narzt.cam/] installed.
130
131
 
131
- To limit the getargv gem to Apple OSs add it to your Gemfile like so:
132
+ To limit the getargv gem to Apple OSs add it to your Gemfile like so:
132
133
 
133
- gem "getargv", "~> 0.3.14", platforms: :ruby, install_if: RbConfig::CONFIG["host_os"].include?("darwin")
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