runcom 9.0.2 → 9.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.adoc +19 -3
- data/runcom.gemspec +1 -1
- data.tar.gz.sig +0 -0
- metadata +3 -3
- 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
@@ -35,18 +35,34 @@ 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
|
data/runcom.gemspec
CHANGED
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
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
35
35
|
3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
|
36
36
|
gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
|
37
37
|
-----END CERTIFICATE-----
|
38
|
-
date: 2023-
|
38
|
+
date: 2023-04-30 00:00:00.000000000 Z
|
39
39
|
dependencies:
|
40
40
|
- !ruby/object:Gem::Dependency
|
41
41
|
name: refinements
|
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
126
126
|
- !ruby/object:Gem::Version
|
127
127
|
version: '0'
|
128
128
|
requirements: []
|
129
|
-
rubygems_version: 3.4.
|
129
|
+
rubygems_version: 3.4.12
|
130
130
|
signing_key:
|
131
131
|
specification_version: 4
|
132
132
|
summary: An XDG enhanced run command manager for command line interfaces.
|
metadata.gz.sig
CHANGED
Binary file
|