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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50179c8e5e171f686a9834c46ccab7c7ceadf6bbf12e9bf7a798d98ccd3b6a95
4
- data.tar.gz: 4c37ac059b00e74b12ffc9c01b20efe930d7fa84bbe8cf49b39fcdbd12d76668
3
+ metadata.gz: a96b20d63816d654787104617640a3cc19bf9808ce2c4da2c94ee3590090889b
4
+ data.tar.gz: 24ca43e372e232b67ed5215000057fa45cd84a3f107306b44f85122142e3c325
5
5
  SHA512:
6
- metadata.gz: 9d40bd36ce1dcb398c67fa0f1c3e429c57a8228dabe969fb775f423e4822440f1c3871c72b0f0d45f36209014550e4e37b461b15ebc5e7e02d2e1ea6f64cae72
7
- data.tar.gz: c13f7b219f2d3caaaa47a70d55939bb05cffe106a72826a89753e694c365ca6d4e49fc516f17addf00c0c21844af9305b872f65f8c158237ea5b0d58de5d91f5
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://www.alchemists.io/projects/xdg[XDG]
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://www.alchemists.io/projects/xdg[XDG] implementation which provides access to
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
- Add the following to your Gemfile:
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
- gem "runcom"
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://www.alchemists.io/projects/xdg[XDG] implementation.
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://www.alchemists.io/projects/rubysmith[Rubysmith] - A command line interface for
178
+ * link:https://alchemists.io/projects/rubysmith[Rubysmith] - A command line interface for
163
179
  smithing Ruby projects.
164
- * link:https://www.alchemists.io/projects/gemsmith[Gemsmith] - A command line interface for smithing
180
+ * link:https://alchemists.io/projects/gemsmith[Gemsmith] - A command line interface for smithing
165
181
  new Ruby gems.
166
- * link:https://www.alchemists.io/projects/git-lint[Git Lint] - Enforces consistent Git commits.
167
- * link:https://www.alchemists.io/projects/milestoner[Milestoner] - A command line interface for
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://www.alchemists.io/projects/pennyworth[Pennyworth] - A command line interface that
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://www.alchemists.io/projects/pragmater[Pragmater] - A command line interface for
187
+ * link:https://alchemists.io/projects/pragmater[Pragmater] - A command line interface for
172
188
  managing/formatting source file pragma comments.
173
- * link:https://www.alchemists.io/projects/sublime_text_kit[Sublime Text Kit] - A command line
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://www.alchemists.io/projects/tocer[Tocer] - A command line interface for generating
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://www.alchemists.io/policies/license[License]
221
+ == link:https://alchemists.io/policies/license[License]
206
222
 
207
- == link:https://www.alchemists.io/policies/security[Security]
223
+ == link:https://alchemists.io/policies/security[Security]
208
224
 
209
- == link:https://www.alchemists.io/policies/code_of_conduct[Code of Conduct]
225
+ == link:https://alchemists.io/policies/code_of_conduct[Code of Conduct]
210
226
 
211
- == link:https://www.alchemists.io/policies/contributions[Contributions]
227
+ == link:https://alchemists.io/policies/contributions[Contributions]
212
228
 
213
- == link:https://www.alchemists.io/projects/runcom/versions[Versions]
229
+ == link:https://alchemists.io/projects/runcom/versions[Versions]
214
230
 
215
- == link:https://www.alchemists.io/community[Community]
231
+ == link:https://alchemists.io/community[Community]
216
232
 
217
233
  == Credits
218
234
 
219
- * Built with link:https://www.alchemists.io/projects/gemsmith[Gemsmith].
220
- * Engineered by link:https://www.alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
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.1"
5
+ spec.version = "9.0.3"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
- spec.homepage = "https://www.alchemists.io/projects/runcom"
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://www.alchemists.io/projects/runcom/versions",
15
- "documentation_uri" => "https://www.alchemists.io/projects/runcom",
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.1
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
- MIIC/jCCAeagAwIBAgIBBTANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDDBpicm9v
14
- a2UvREM9YWxjaGVtaXN0cy9EQz1pbzAeFw0yMjAzMTkxNzI0MzJaFw0yMzAzMTkx
15
- NzI0MzJaMCUxIzAhBgNVBAMMGmJyb29rZS9EQz1hbGNoZW1pc3RzL0RDPWlvMIIB
16
- IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6l1qpXTiomH1RfMRloyw7MiE
17
- xyVx/x8Yc3EupdH7uhNaTXQGyORN6aOY//1QXXMHIZ9tW74nZLhesWMSUMYy0XhB
18
- brs+KkurHnc9FnEJAbG7ebGvl/ncqZt72nQvaxpDxvuCBHgJAz+8i5wl6FhLw+oT
19
- 9z0A8KcGhz67SdcoQiD7qiCjL/2NTeWHOzkpPrdGlt088+VerEEGf5I13QCvaftP
20
- D5vkU0YlAm1r98BymuJlcQ1qdkVEI1d48ph4kcS0S0nv1RiuyVb6TCAR3Nu3VaVq
21
- 3fPzZKJLZBx67UvXdbdicWPiUR75elI4PXpLIic3xytaF52ZJYyKZCNZJhNwfQID
22
- AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU0nzow9vc
23
- 2CdikiiE3fJhP/gY4ggwDQYJKoZIhvcNAQELBQADggEBAJbbNyWzFjqUNVPPCUCo
24
- IMrhDa9xf1xkORXNYYbmXgoxRy/KyNbUr+jgEEoWJAm9GXlcqxxWAUI6pK/i4/Qi
25
- X6rPFEFmeObDOHNvuqy8Hd6AYsu+kP94U/KJhe9wnWGMmGoNKJNU3EkW3jM/osSl
26
- +JRxiH5t4WtnDiVyoYl5nYC02rYdjJkG6VMxDymXTqn7u6HhYgZkGujq1UPar8x2
27
- hNIWJblDKKSu7hA2d6+kUthuYo13o1sg1Da/AEDg0hoZSUvhqDEF5Hy232qb3pDt
28
- CxDe2+VuChj4I1nvIHdu+E6XoEVlanUPKmSg6nddhkKn2gC45Kyzh6FZqnzH/CRp
29
- RFE=
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-01-22 00:00:00.000000000 Z
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://www.alchemists.io/projects/runcom
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://www.alchemists.io/projects/runcom/versions
102
- documentation_uri: https://www.alchemists.io/projects/runcom
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.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