miga-base 1.0.3.0 → 1.0.4.0
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/daemon.rb +5 -0
- data/lib/miga/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2519f1f7a439615e68915b46534a98cdf03c88fa9c64a60dfaa7b6ace394a5ac
|
|
4
|
+
data.tar.gz: 642ebe775db70dabbad9a20aec03ef269bc62ea3c32c32c48161caeef2a6efda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e99839162d562d5636d246179a82a01cc354bd11b12878348031aab30f3afe27777aa3447757af1d34ed0e0b090f5dbc81a35c05416386fd6d64f2f2b116b4c3
|
|
7
|
+
data.tar.gz: 39bc66a47a078fab4f39216a86faa8d50afb19dbadb23175a0d4fa79c40bf84fc42be4b3ba0394130a725a52307728663bc583cd59e717df17582f2b8cae14ba
|
|
@@ -74,6 +74,11 @@ class MiGA::Cli::Action::Daemon < MiGA::Cli::Action
|
|
|
74
74
|
|
|
75
75
|
def perform
|
|
76
76
|
cli.operation or raise 'Please specify a daemon operation'
|
|
77
|
+
|
|
78
|
+
# Cleanup environment
|
|
79
|
+
%w[PROJECT RUNTYPE CORES DATASET].each { |i| ENV[i] = nil }
|
|
80
|
+
|
|
81
|
+
# Configure and run daemon
|
|
77
82
|
p = cli.load_project
|
|
78
83
|
d = MiGA::Daemon.new(p, cli[:json])
|
|
79
84
|
dopts = %i[latency maxjobs nodelist ppn shutdown_when_done]
|
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.0,
|
|
15
|
+
VERSION = [1.0, 4, 0].freeze
|
|
16
16
|
|
|
17
17
|
##
|
|
18
18
|
# Nickname for the current major.minor version.
|
|
@@ -20,7 +20,7 @@ module MiGA
|
|
|
20
20
|
|
|
21
21
|
##
|
|
22
22
|
# Date of the current gem release.
|
|
23
|
-
VERSION_DATE = Date.new(2021, 6,
|
|
23
|
+
VERSION_DATE = Date.new(2021, 6, 16)
|
|
24
24
|
|
|
25
25
|
##
|
|
26
26
|
# References of MiGA
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: miga-base
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luis M. Rodriguez-R
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-06-
|
|
11
|
+
date: 2021-06-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: daemons
|