getargv 0.2.0-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 +7 -0
- data/.standard.yml +3 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile +19 -0
- data/Gemfile.lock +107 -0
- data/LICENSE.txt +29 -0
- data/README.md +38 -0
- data/Rakefile +52 -0
- data/checksums/getargv-0.1.0-x86_64-darwin-21.gem.sha512 +1 -0
- data/ext/getargv_ruby/extconf.rb +31 -0
- data/ext/getargv_ruby/getargv_ruby.c +99 -0
- data/ext/getargv_ruby/getargv_ruby.h +10 -0
- data/getargv_ruby.gemspec +57 -0
- data/lib/getargv_ruby/version.rb +7 -0
- data/lib/getargv_ruby.rb +9 -0
- data/logo.svg +1 -0
- data/sig/getargv_ruby.rbs +4 -0
- metadata +81 -0
metadata
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: getargv
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: universal-darwin
|
6
|
+
authors:
|
7
|
+
- Camden Narzt
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-01-05 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: |2
|
14
|
+
Getargv is a gem that allows you to query the arguments of other processes as
|
15
|
+
an array or string. This gem only supports macOS because the KERN_PROCARGS2
|
16
|
+
sysctl only exists in xnu kernels, BSD or Linux users should just read
|
17
|
+
/proc/$PID/cmdline which is much easier and faster, Solaris users should use
|
18
|
+
pargs.
|
19
|
+
email:
|
20
|
+
- getargv@narzt.cam
|
21
|
+
executables: []
|
22
|
+
extensions:
|
23
|
+
- ext/getargv_ruby/extconf.rb
|
24
|
+
extra_rdoc_files:
|
25
|
+
- README.md
|
26
|
+
- ext/getargv_ruby/getargv_ruby.c
|
27
|
+
- lib/getargv_ruby/version.rb
|
28
|
+
- lib/getargv_ruby.rb
|
29
|
+
files:
|
30
|
+
- ".standard.yml"
|
31
|
+
- CHANGELOG.md
|
32
|
+
- Gemfile
|
33
|
+
- Gemfile.lock
|
34
|
+
- LICENSE.txt
|
35
|
+
- README.md
|
36
|
+
- Rakefile
|
37
|
+
- checksums/getargv-0.1.0-x86_64-darwin-21.gem.sha512
|
38
|
+
- ext/getargv_ruby/extconf.rb
|
39
|
+
- ext/getargv_ruby/getargv_ruby.c
|
40
|
+
- ext/getargv_ruby/getargv_ruby.h
|
41
|
+
- getargv_ruby.gemspec
|
42
|
+
- lib/getargv_ruby.rb
|
43
|
+
- lib/getargv_ruby/version.rb
|
44
|
+
- logo.svg
|
45
|
+
- sig/getargv_ruby.rbs
|
46
|
+
homepage: https://getargv.narzt.cam/
|
47
|
+
licenses:
|
48
|
+
- BSD-3-Clause
|
49
|
+
metadata:
|
50
|
+
homepage_uri: https://getargv.narzt.cam/
|
51
|
+
source_code_uri: https://github.com/getargv/getargv_ruby
|
52
|
+
changelog_uri: https://github.com/getargv/getargv_ruby/blob/CHANGELOG.md
|
53
|
+
bug_tracker_uri: https://github.com/getargv/getargv_ruby/issues
|
54
|
+
funding_uri: https://github.com/sponsors/CamJN
|
55
|
+
documentation_uri: https://rubydoc.info/gems/getargv/Getargv
|
56
|
+
post_install_message:
|
57
|
+
rdoc_options:
|
58
|
+
- "-o"
|
59
|
+
- doc
|
60
|
+
- "-T"
|
61
|
+
- rails
|
62
|
+
- "--format=sdoc"
|
63
|
+
require_paths:
|
64
|
+
- lib
|
65
|
+
- ext
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 2.6.0
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
requirements: []
|
77
|
+
rubygems_version: 3.1.6
|
78
|
+
signing_key:
|
79
|
+
specification_version: 4
|
80
|
+
summary: This gem allows you to query the arguments of other processes on macOS.
|
81
|
+
test_files: []
|