miga-base 1.3.20.4 → 1.3.20.5
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/doctor/distances.rb +2 -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: 17c8c736e04eeaea0e7247e7a5134a0902f4e2ed4c749d68e00b00aeeb7e7295
|
4
|
+
data.tar.gz: 93cca0af126920c07740be2a4f203d36f3632722022c5e09eda5d326469c31bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af8314535751804f3870767b4c0d88c5c139a3ae94e03c92317935397c5ee20a88e49ad97addcbf4be6e47947ee659a919db4ab1d60b48f86c5eda627fb3dba4
|
7
|
+
data.tar.gz: 65e3cdc46e3cf3d4f094b0dd6bfa93806ede628573eede6f893450720d76a8c5d69528c4b63cb6839861438014d6801297d0c8a70c0d4f841a79118d54aab2cf
|
@@ -151,7 +151,8 @@ module MiGA::Cli::Action::Doctor::Distances
|
|
151
151
|
end
|
152
152
|
raise "Incomplete thread dump: #{file}" unless metric == :end
|
153
153
|
end
|
154
|
-
File.open("#{file}.marshal", 'w') { |fh| Marshal.dump(dist, fh) }
|
154
|
+
File.open("#{file}.marshal.tmp", 'w') { |fh| Marshal.dump(dist, fh) }
|
155
|
+
File.rename("#{file}.marshal.tmp", "#{file}.marshal")
|
155
156
|
end
|
156
157
|
cli.say
|
157
158
|
|
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, 20,
|
15
|
+
VERSION = [1.3, 20, 5].freeze
|
16
16
|
|
17
17
|
##
|
18
18
|
# Nickname for the current major.minor version.
|