cosmos 3.6.1 → 3.6.2
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/data/crc.txt +2 -2
- data/lib/cosmos/config/config_parser.rb +2 -1
- data/lib/cosmos/version.rb +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 86f4e70039dc9cf70198d05ebda498d13d0e6b09
|
|
4
|
+
data.tar.gz: c5aec1555af16993cbd5d0ca88c34006afb62242
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 81bc36f9c68266492a066981d0308a4c2a5c1d787edf6708251bd1944d68a76f39b33966cf73faf7bf291c503db8f7390c814a61f2bc54b1ea36574cdcd8fbf8
|
|
7
|
+
data.tar.gz: 5fd875fbd16981537682e0bba166b5921a919f96ac48a3557d486d05373f6f78a1426e58588c556a2e2553ec14e4a514a6b3668a82127b1814c5714a89a79b3f
|
data/data/crc.txt
CHANGED
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
"lib/cosmos/tools/tlm_viewer/tlm_viewer.rb" 0x895983E9
|
|
235
235
|
"lib/cosmos/system.rb" 0x735DFB42
|
|
236
236
|
"lib/cosmos/conversions.rb" 0x43679D05
|
|
237
|
-
"lib/cosmos/version.rb"
|
|
237
|
+
"lib/cosmos/version.rb" 0xB014EBF0
|
|
238
238
|
"lib/cosmos/core_ext.rb" 0x1951B346
|
|
239
239
|
"lib/cosmos/interfaces.rb" 0x7E3EA326
|
|
240
240
|
"lib/cosmos/processors.rb" 0x5241327D
|
|
@@ -250,7 +250,7 @@
|
|
|
250
250
|
"lib/cosmos/streams/tcpip_socket_stream.rb" 0x7096E4FA
|
|
251
251
|
"lib/cosmos/streams/preidentified_stream_protocol.rb" 0xC258238E
|
|
252
252
|
"lib/cosmos/script.rb" 0x25BB611B
|
|
253
|
-
"lib/cosmos/config/config_parser.rb"
|
|
253
|
+
"lib/cosmos/config/config_parser.rb" 0x906B17D1
|
|
254
254
|
"lib/cosmos/packet_logs.rb" 0xA2EDBB00
|
|
255
255
|
"lib/cosmos/packets/limits.rb" 0x9758BB50
|
|
256
256
|
"lib/cosmos/packets/limits_response.rb" 0x9C5E8444
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
# attribution addendums as found in the LICENSE.txt
|
|
10
10
|
|
|
11
11
|
require 'cosmos/ext/config_parser'
|
|
12
|
+
require 'tempfile'
|
|
12
13
|
require 'erb'
|
|
13
14
|
|
|
14
15
|
module Cosmos
|
|
@@ -183,7 +184,7 @@ module Cosmos
|
|
|
183
184
|
size = file.stat.size.to_f
|
|
184
185
|
|
|
185
186
|
# Callbacks for beginning of parsing
|
|
186
|
-
@@message_callback.call("Parsing #{size} bytes of #{
|
|
187
|
+
@@message_callback.call("Parsing #{size} bytes of #{filename}") if @@message_callback
|
|
187
188
|
@@progress_callback.call(0.0) if @@progress_callback
|
|
188
189
|
|
|
189
190
|
# Loop through each line of the data
|
data/lib/cosmos/version.rb
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# encoding: ascii-8bit
|
|
2
2
|
|
|
3
|
-
COSMOS_VERSION = '3.6.
|
|
3
|
+
COSMOS_VERSION = '3.6.2'
|
|
4
4
|
module Cosmos
|
|
5
5
|
module Version
|
|
6
6
|
MAJOR = '3'
|
|
7
7
|
MINOR = '6'
|
|
8
|
-
PATCH = '
|
|
9
|
-
BUILD = '
|
|
8
|
+
PATCH = '2'
|
|
9
|
+
BUILD = 'fcb3c8cec14487f39b0465f850a61b9ea13355cc'
|
|
10
10
|
end
|
|
11
|
-
VERSION = '3.6.
|
|
11
|
+
VERSION = '3.6.2'
|
|
12
12
|
end
|