miga-base 1.4.0.2 → 1.4.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
- data/lib/miga/cli/action/lair.rb +9 -0
- data/lib/miga/version.rb +1 -1
- 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: 8866ced6da49edafc7b4c7467ef600e630a2e132f9b66831fe5ac49f8416ed9d
|
4
|
+
data.tar.gz: a1f20c0aa45b90ea8fce12340b4d4bb74b023f8d9f13105a6058aefcff1d6018
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ae42ebaf9102adbac2cd5380fb1c7035d8832ca430366f86a3e91d28396340c2bf7bc8a57c11f460a4f76b40da0e2806a2f1dbda2bb6ef43d3243420e8cd946
|
7
|
+
data.tar.gz: fee137f5c16869387d023444a65d286d539eae9795ddb85104504340061afd3dbb67a3a7c47552abf4d40dc95ee6558e74a125b1cb670dda313018e64ea14ee8
|
data/lib/miga/cli/action/lair.rb
CHANGED
@@ -63,6 +63,15 @@ class MiGA::Cli::Action::Lair < MiGA::Cli::Action
|
|
63
63
|
'--no-trust-timestamp',
|
64
64
|
'Check all results instead of trusting project timestamps'
|
65
65
|
) { |v| cli[:trust_timestamp] = v }
|
66
|
+
opt.on(
|
67
|
+
'--system-element',
|
68
|
+
'Default settings for a system element lair (consider --max-running)',
|
69
|
+
'Same as: --no-trust-timestamp --exclude-releases --ignore-complete'
|
70
|
+
) do |v|
|
71
|
+
cli[:trust_timestamp] = false
|
72
|
+
cli[:exclude_releases] = true
|
73
|
+
cli[:ignore_complete] = true
|
74
|
+
end
|
66
75
|
opt.on(
|
67
76
|
'--name STRING',
|
68
77
|
'A name for the chief daemon process'
|
data/lib/miga/version.rb
CHANGED
@@ -12,7 +12,7 @@ module MiGA
|
|
12
12
|
# - String indicating release status:
|
13
13
|
# - rc* release candidate, not released as gem
|
14
14
|
# - [0-9]+ stable release, released as gem
|
15
|
-
VERSION = [1.4, 0,
|
15
|
+
VERSION = [1.4, 0, 3].freeze
|
16
16
|
|
17
17
|
##
|
18
18
|
# Nickname for the current major.minor version.
|