specwrk 0.1.2 → 0.1.4
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/lib/specwrk/cli.rb +1 -0
- data/lib/specwrk/version.rb +1 -1
- data/lib/specwrk/web/app.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40f4d401d702b91aeb83be0c46ce7ca36cef7c672adf2d5d3b1cdba036121067
|
4
|
+
data.tar.gz: cb7e0992a6003a88a0468f9d08ba90a2922866a36cb53a844740c9409fc9254e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bfa583f503773db843aba2e962878a00f7cc8c38cfe2cd2c56ab5165394c4a586345347afcb1efef626e920f05fe95afe949f89e1c97a5000d3477ebb0e2bea5
|
7
|
+
data.tar.gz: 53bb263d94bd76886d1800f80a3a9fd8270938c7e794ad983f9c843020e0da9abaeec5c2bb664ba3642b02f2fa2b2c8f8cd537216e5af96b38d302d8cd90538e
|
data/lib/specwrk/cli.rb
CHANGED
@@ -67,6 +67,7 @@ module Specwrk
|
|
67
67
|
|
68
68
|
on_included do |base|
|
69
69
|
base.unique_option :port, type: :integer, default: ENV.fetch("SPECWRK_SRV_PORT", "5138"), aliases: ["-p"], desc: "Server port. Overrides SPECWRK_SRV_PORT. Default 5138."
|
70
|
+
base.unique_option :bind, type: :string, default: ENV.fetch("SPECWRK_SRV_BIND", "127.0.0.1"), aliases: ["-b"], desc: "Server bind address. Overrides SPECWRK_SRV_BIND. Default 127.0.0.1."
|
70
71
|
base.unique_option :key, type: :string, aliases: ["-k"], default: ENV.fetch("SPECWRK_SRV_KEY", ""), desc: "Authentication key clients must use for access. Overrides SPECWRK_SRV_KEY. Default ''."
|
71
72
|
base.unique_option :output, type: :string, default: ENV.fetch("SPECWRK_OUT", ".specwrk/"), aliases: ["-o"], desc: "Directory where worker output is stored. Overrides SPECWRK_OUT. Default '.specwrk/'."
|
72
73
|
base.unique_option :group_by, values: %w[file timings], default: ENV.fetch("SPECWERK_SRV_GROUP_BY", "timings"), desc: "How examples will be grouped for workers; fallback to file if no timings are found. Overrides SPECWERK_SRV_GROUP_BY. Default timings."
|
data/lib/specwrk/version.rb
CHANGED
data/lib/specwrk/web/app.rb
CHANGED