gitlab-swat 0.1.2 → 0.1.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
- data/README.md +2 -1
- data/config.yaml +8 -6
- data/gitlab_swat.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '091767553499de299a7808b8364b273d0ea99bdb'
|
|
4
|
+
data.tar.gz: a131a8e302f4b1baba74e133cb722205dab2684a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e5e14416ac0e5553cf33d7a0ce871ad51474c12e3f59b7db36e954dfbaf96c0017e11102c00249c1138b664e8b0db974cde182ddec8a283942cdbbcfefd61aed
|
|
7
|
+
data.tar.gz: a29af65915060827f8c4aff8c625e10b1fdfc34c5e5280d205d1ee607ab1ea2bf1d0db12d35c0630923cf5fa560d63672f72f9581ed1fa11b7bcd099c820961a
|
data/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
[](https://gitlab.com/gitlab-cog/swat/commits/master)
|
|
2
|
+
[](https://badge.fury.io/rb/gitlab-swat)
|
|
2
3
|
|
|
3
4
|
# GitLab SWAT
|
|
4
5
|
|
|
@@ -54,7 +55,7 @@ Any stage that raises an exception will stop the execution, and will force and e
|
|
|
54
55
|
|
|
55
56
|
* **SCRIPTS_REMOTE_URL** url pointing to the remote repository
|
|
56
57
|
* **SCRIPTS_LOCAL_PATH** folder where the remote repository will be downloaded to
|
|
57
|
-
* **RAILS_RUNNER_COMMAND** command used to run rails, for example:
|
|
58
|
+
* **RAILS_RUNNER_COMMAND** command used to run rails, for example: rails runner ./scripts/lib/swat_run.rb
|
|
58
59
|
* **RAILS_WORKING_DIR** working dir in which to execute the rails runner command
|
|
59
60
|
|
|
60
61
|
## Cog Commands
|
data/config.yaml
CHANGED
|
@@ -10,12 +10,14 @@ description: >
|
|
|
10
10
|
If That’s Simply Not Possible, SWAT Uses Special Weapons and Tactics to Keep the Public Safe
|
|
11
11
|
config:
|
|
12
12
|
env:
|
|
13
|
-
- var:
|
|
14
|
-
description: Required
|
|
15
|
-
- var:
|
|
16
|
-
description: Required
|
|
17
|
-
- var:
|
|
18
|
-
description: Required
|
|
13
|
+
- var: SCRIPTS_REMOTE_URL
|
|
14
|
+
description: Required, url pointing to the remote repositor
|
|
15
|
+
- var: SCRIPTS_LOCAL_PATH
|
|
16
|
+
description: Required, folder where the remote repository will be downloaded to
|
|
17
|
+
- var: RAILS_RUNNER_COMMAND
|
|
18
|
+
description: Required, command used to run rails, for example\: rails runner ./scripts/lib/swat_run.rb
|
|
19
|
+
- var: RAILS_WORKING_DIR
|
|
20
|
+
description: Optional, working dir in which to execute the rails runner command
|
|
19
21
|
homepage: https://gitlab.com/gitlab-cog/swat
|
|
20
22
|
author: Pablo Carranza <pablo@gitlab.com>
|
|
21
23
|
permissions:
|
data/gitlab_swat.gemspec
CHANGED