runcom 9.0.1 → 9.0.3
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
- checksums.yaml.gz.sig +0 -0
- data/README.adoc +38 -22
- data/runcom.gemspec +4 -4
- data.tar.gz.sig +0 -0
- metadata +30 -23
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a96b20d63816d654787104617640a3cc19bf9808ce2c4da2c94ee3590090889b
|
|
4
|
+
data.tar.gz: 24ca43e372e232b67ed5215000057fa45cd84a3f107306b44f85122142e3c325
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8879b8d5b5811e4d0c998fc46813af39d83be386b69fc3cdde40104dbcc8066a242ee23af46945dc0c3b9d42aeb06b9fdf29ef7eaecd98d4741e4b8f9cd3d7d1
|
|
7
|
+
data.tar.gz: d397c7d6616f515f5435b535e785e501517c14ebf1e1597f60d9f68dd18e604edbbda477abcde674a43cde2951ab6b2a417e5a5026e119333ee4de3a6495ad10
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/README.adoc
CHANGED
|
@@ -8,14 +8,14 @@ Runcom is a link:https://en.wikipedia.org/wiki/Run_commands[Run Command] portman
|
|
|
8
8
|
[com]mand = runcom`) which provides common functionality for Command Line Interfaces (CLIs) in which
|
|
9
9
|
to manage global, local, or multiple caches, configurations, or data in general. It does this by
|
|
10
10
|
leveraging the https://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html[XDG Base
|
|
11
|
-
Directory Specification] built atop the link:https://
|
|
11
|
+
Directory Specification] built atop the link:https://alchemists.io/projects/xdg[XDG]
|
|
12
12
|
implementation. In other words, Runcom is an advanced version of XDG.
|
|
13
13
|
|
|
14
14
|
toc::[]
|
|
15
15
|
|
|
16
16
|
== Features
|
|
17
17
|
|
|
18
|
-
* Wraps the link:https://
|
|
18
|
+
* Wraps the link:https://alchemists.io/projects/xdg[XDG] implementation which provides access to
|
|
19
19
|
the following environment variables:
|
|
20
20
|
** `$XDG_CACHE_HOME`
|
|
21
21
|
** `$XDG_CONFIG_HOME`
|
|
@@ -35,24 +35,40 @@ toc::[]
|
|
|
35
35
|
|
|
36
36
|
== Setup
|
|
37
37
|
|
|
38
|
-
To install, run:
|
|
38
|
+
To install _with_ security, run:
|
|
39
|
+
|
|
40
|
+
[source,bash]
|
|
41
|
+
----
|
|
42
|
+
# 💡 Skip this line if you already have the public certificate installed.
|
|
43
|
+
gem cert --add <(curl --compressed --location https://alchemists.io/gems.pem)
|
|
44
|
+
gem install runcom --trust-policy HighSecurity
|
|
45
|
+
----
|
|
46
|
+
|
|
47
|
+
To install _without_ security, run:
|
|
39
48
|
|
|
40
49
|
[source,bash]
|
|
41
50
|
----
|
|
42
51
|
gem install runcom
|
|
43
52
|
----
|
|
44
53
|
|
|
45
|
-
|
|
54
|
+
You can also add the gem directly to your project:
|
|
55
|
+
|
|
56
|
+
[source,bash]
|
|
57
|
+
----
|
|
58
|
+
bundle add runcom
|
|
59
|
+
----
|
|
60
|
+
|
|
61
|
+
Once the gem is installed, you only need to require it:
|
|
46
62
|
|
|
47
63
|
[source,ruby]
|
|
48
64
|
----
|
|
49
|
-
|
|
65
|
+
require "runcom"
|
|
50
66
|
----
|
|
51
67
|
|
|
52
68
|
== Usage
|
|
53
69
|
|
|
54
70
|
The following describes the enhancements built atop the
|
|
55
|
-
link:https://
|
|
71
|
+
link:https://alchemists.io/projects/xdg[XDG] implementation.
|
|
56
72
|
|
|
57
73
|
=== Overview
|
|
58
74
|
|
|
@@ -159,20 +175,20 @@ link:lib/runcom/config.rb[`Runcom::Config`] object.
|
|
|
159
175
|
|
|
160
176
|
Examples of gems built atop this gem are:
|
|
161
177
|
|
|
162
|
-
* link:https://
|
|
178
|
+
* link:https://alchemists.io/projects/rubysmith[Rubysmith] - A command line interface for
|
|
163
179
|
smithing Ruby projects.
|
|
164
|
-
* link:https://
|
|
180
|
+
* link:https://alchemists.io/projects/gemsmith[Gemsmith] - A command line interface for smithing
|
|
165
181
|
new Ruby gems.
|
|
166
|
-
* link:https://
|
|
167
|
-
* link:https://
|
|
182
|
+
* link:https://alchemists.io/projects/git-lint[Git Lint] - Enforces consistent Git commits.
|
|
183
|
+
* link:https://alchemists.io/projects/milestoner[Milestoner] - A command line interface for
|
|
168
184
|
releasing Git repository milestones.
|
|
169
|
-
* link:https://
|
|
185
|
+
* link:https://alchemists.io/projects/pennyworth[Pennyworth] - A command line interface that
|
|
170
186
|
enhances and extends link:https://www.alfredapp.com[Alfred] with Ruby support.
|
|
171
|
-
* link:https://
|
|
187
|
+
* link:https://alchemists.io/projects/pragmater[Pragmater] - A command line interface for
|
|
172
188
|
managing/formatting source file pragma comments.
|
|
173
|
-
* link:https://
|
|
189
|
+
* link:https://alchemists.io/projects/sublime_text_kit[Sublime Text Kit] - A command line
|
|
174
190
|
interface for managing Sublime Text metadata.
|
|
175
|
-
* link:https://
|
|
191
|
+
* link:https://alchemists.io/projects/tocer[Tocer] - A command line interface for generating
|
|
176
192
|
table of contents for Markdown files.
|
|
177
193
|
|
|
178
194
|
== Development
|
|
@@ -202,19 +218,19 @@ To test, run:
|
|
|
202
218
|
bin/rake
|
|
203
219
|
----
|
|
204
220
|
|
|
205
|
-
== link:https://
|
|
221
|
+
== link:https://alchemists.io/policies/license[License]
|
|
206
222
|
|
|
207
|
-
== link:https://
|
|
223
|
+
== link:https://alchemists.io/policies/security[Security]
|
|
208
224
|
|
|
209
|
-
== link:https://
|
|
225
|
+
== link:https://alchemists.io/policies/code_of_conduct[Code of Conduct]
|
|
210
226
|
|
|
211
|
-
== link:https://
|
|
227
|
+
== link:https://alchemists.io/policies/contributions[Contributions]
|
|
212
228
|
|
|
213
|
-
== link:https://
|
|
229
|
+
== link:https://alchemists.io/projects/runcom/versions[Versions]
|
|
214
230
|
|
|
215
|
-
== link:https://
|
|
231
|
+
== link:https://alchemists.io/community[Community]
|
|
216
232
|
|
|
217
233
|
== Credits
|
|
218
234
|
|
|
219
|
-
* Built with link:https://
|
|
220
|
-
* Engineered by link:https://
|
|
235
|
+
* Built with link:https://alchemists.io/projects/gemsmith[Gemsmith].
|
|
236
|
+
* Engineered by link:https://alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
|
data/runcom.gemspec
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = "runcom"
|
|
5
|
-
spec.version = "9.0.
|
|
5
|
+
spec.version = "9.0.3"
|
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
|
8
|
-
spec.homepage = "https://
|
|
8
|
+
spec.homepage = "https://alchemists.io/projects/runcom"
|
|
9
9
|
spec.summary = "An XDG enhanced run command manager for command line interfaces."
|
|
10
10
|
spec.license = "Hippocratic-2.1"
|
|
11
11
|
|
|
12
12
|
spec.metadata = {
|
|
13
13
|
"bug_tracker_uri" => "https://github.com/bkuhlmann/runcom/issues",
|
|
14
|
-
"changelog_uri" => "https://
|
|
15
|
-
"documentation_uri" => "https://
|
|
14
|
+
"changelog_uri" => "https://alchemists.io/projects/runcom/versions",
|
|
15
|
+
"documentation_uri" => "https://alchemists.io/projects/runcom",
|
|
16
16
|
"funding_uri" => "https://github.com/sponsors/bkuhlmann",
|
|
17
17
|
"label" => "Runcom",
|
|
18
18
|
"rubygems_mfa_required" => "true",
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: runcom
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 9.0.
|
|
4
|
+
version: 9.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brooke Kuhlmann
|
|
@@ -10,25 +10,32 @@ bindir: bin
|
|
|
10
10
|
cert_chain:
|
|
11
11
|
- |
|
|
12
12
|
-----BEGIN CERTIFICATE-----
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
13
|
+
MIIEeDCCAuCgAwIBAgIBATANBgkqhkiG9w0BAQsFADBBMQ8wDQYDVQQDDAZicm9v
|
|
14
|
+
a2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQBGRYC
|
|
15
|
+
aW8wHhcNMjMwMzIyMTYxNDQxWhcNMjUwMzIxMTYxNDQxWjBBMQ8wDQYDVQQDDAZi
|
|
16
|
+
cm9va2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQB
|
|
17
|
+
GRYCaW8wggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQCro8tj5/E1Hg88
|
|
18
|
+
f4qfiwPVd2zJQHvdYt4GHVvuHRRgx4HGhJuNp+4BId08RBn7V6V1MW6MY3kezRBs
|
|
19
|
+
M+7QOQ4b1xNLTvY7FYQB1wGK5a4x7TTokDrPYQxDB2jmsdDYCzVbIMrAvUfcecRi
|
|
20
|
+
khyGZCdByiiCl4fKv77P12tTT+NfsvXkLt/AYCGwjOUyGKTQ01Z6eC09T27GayPH
|
|
21
|
+
QQvIkakyFgcJtzSyGzs8bzK5q9u7wQ12MNTjJoXzW69lqp0oNvDylu81EiSUb5S6
|
|
22
|
+
QzzPxZBiRB1sgtbt1gUbVI262ZDq1gR+HxPFmp+Cgt7ZLIJZAtesQvtcMzseXpfn
|
|
23
|
+
hpmm0Sw22KGhRAy/mqHBRhDl5HqS1SJp2Ko3lcnpXeFResp0HNlt8NSu13vhC08j
|
|
24
|
+
GUHU9MyIXbFOsnp3K3ADrAVjPWop8EZkmUR3MV/CUm00w2cZHCSGiXl1KMpiVKvk
|
|
25
|
+
Ywr1gd2ZME4QLSo+EXUtLxDUa/W3xnBS8dBOuMMz02FPWYr3PN8CAwEAAaN7MHkw
|
|
26
|
+
CQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFAFgmv0tYMZnItuPycSM
|
|
27
|
+
F5wykJEVMB8GA1UdEQQYMBaBFGJyb29rZUBhbGNoZW1pc3RzLmlvMB8GA1UdEgQY
|
|
28
|
+
MBaBFGJyb29rZUBhbGNoZW1pc3RzLmlvMA0GCSqGSIb3DQEBCwUAA4IBgQAX+EGY
|
|
29
|
+
9RLYGxF1VLZz+G1ACQc4uyrCB6kXwI06kzUa5dF9tPXqTX9ffnz3/W8ck2IQhKzu
|
|
30
|
+
MKO2FVijzbDWTsZeZGglS4E+4Jxpau1lU9HhOIcKolv6LeC6UdALTFudY+GLb8Xw
|
|
31
|
+
REXgaJkjzzhkUSILmEnRwEbY08dVSl7ZAaxVI679vfI2yapLlIwpbBgmQTiTvPr3
|
|
32
|
+
qyyLUno9flYEOv9fmGHunSrM+gE0/0niGTXa5GgXBXYGS2he4LQGgSBfGp/cTwMU
|
|
33
|
+
rDKJRcusZ12lNBeDfgqACz/BBJF8FLodgk6rGMRZz7+ZmjjHEmpG5bQpR6Q2BuWL
|
|
34
|
+
XMtYk/QzaWuhiR7pWjiF8jbdd7RO6or0ohq7iFkokz/5xrtQ/vPzU2RQ3Qc6YaKw
|
|
35
|
+
3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
|
|
36
|
+
gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
|
|
30
37
|
-----END CERTIFICATE-----
|
|
31
|
-
date: 2023-
|
|
38
|
+
date: 2023-04-30 00:00:00.000000000 Z
|
|
32
39
|
dependencies:
|
|
33
40
|
- !ruby/object:Gem::Dependency
|
|
34
41
|
name: refinements
|
|
@@ -93,13 +100,13 @@ files:
|
|
|
93
100
|
- lib/runcom/paths/home.rb
|
|
94
101
|
- lib/runcom/state.rb
|
|
95
102
|
- runcom.gemspec
|
|
96
|
-
homepage: https://
|
|
103
|
+
homepage: https://alchemists.io/projects/runcom
|
|
97
104
|
licenses:
|
|
98
105
|
- Hippocratic-2.1
|
|
99
106
|
metadata:
|
|
100
107
|
bug_tracker_uri: https://github.com/bkuhlmann/runcom/issues
|
|
101
|
-
changelog_uri: https://
|
|
102
|
-
documentation_uri: https://
|
|
108
|
+
changelog_uri: https://alchemists.io/projects/runcom/versions
|
|
109
|
+
documentation_uri: https://alchemists.io/projects/runcom
|
|
103
110
|
funding_uri: https://github.com/sponsors/bkuhlmann
|
|
104
111
|
label: Runcom
|
|
105
112
|
rubygems_mfa_required: 'true'
|
|
@@ -119,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
119
126
|
- !ruby/object:Gem::Version
|
|
120
127
|
version: '0'
|
|
121
128
|
requirements: []
|
|
122
|
-
rubygems_version: 3.4.
|
|
129
|
+
rubygems_version: 3.4.12
|
|
123
130
|
signing_key:
|
|
124
131
|
specification_version: 4
|
|
125
132
|
summary: An XDG enhanced run command manager for command line interfaces.
|
metadata.gz.sig
CHANGED
|
Binary file
|