miga-base 1.3.15.7 → 1.3.15.8
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/db.rb +1 -1
- data/lib/miga/cli/action/init.rb +1 -1
- 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: 67a4b45cec67cd472fc681bd0993b0ba7bb3f36229e0a6cf5120333131a65b72
|
|
4
|
+
data.tar.gz: 968803414089403de2f50e4fe11624b57dc6b69ddeb37a22e5fac365b8fd8224
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bee8323fb44d70b5577baa076b77ebe7a8cdc69ffb40a535fdd714d299d09a08dd3dc73352325d11f1ade061ffca222d53e98602486bfd7571a773dca7ad2f47
|
|
7
|
+
data.tar.gz: 245b2f64128473dcda952e82874fa3c1fad2a0b7aa0b82c8a57bb9a13f01c16094b5a9249899e4212224e10d9853e8b99d3c1c83bef7229a70c07b454ee09513
|
data/lib/miga/cli/action/db.rb
CHANGED
|
@@ -257,7 +257,7 @@ class MiGA::Cli::Action::Db < MiGA::Cli::Action
|
|
|
257
257
|
tmp = File.join(tmp_archive, "#{db_name}.old")
|
|
258
258
|
File.rename(target, tmp)
|
|
259
259
|
File.rename(source, target)
|
|
260
|
-
|
|
260
|
+
FileUtils.rm_rf(tmp)
|
|
261
261
|
else
|
|
262
262
|
File.rename(source, target)
|
|
263
263
|
end
|
data/lib/miga/cli/action/init.rb
CHANGED
|
@@ -45,7 +45,7 @@ class MiGA::Cli::Action::Init < MiGA::Cli::Action
|
|
|
45
45
|
opt.on(
|
|
46
46
|
'--[no-]optional',
|
|
47
47
|
'Should I try setting up the optional software?',
|
|
48
|
-
'Automatically sets answers for mytaxa, rdp, and
|
|
48
|
+
'Automatically sets answers for mytaxa, rdp, and read-processing'
|
|
49
49
|
) { |v| cli[:optional] = v }
|
|
50
50
|
opt.on(
|
|
51
51
|
'--daemon-type STRING',
|
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.3, 15,
|
|
15
|
+
VERSION = [1.3, 15, 8].freeze
|
|
16
16
|
|
|
17
17
|
##
|
|
18
18
|
# Nickname for the current major.minor version.
|