cosmos 3.2.1 → 3.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (364) hide show
  1. checksums.yaml +4 -4
  2. data/Manifest.txt +195 -0
  3. data/README.md +3 -3
  4. data/data/crc.txt +52 -52
  5. data/lib/cosmos.rb +1 -1
  6. data/lib/cosmos/core_ext/time.rb +11 -9
  7. data/lib/cosmos/gui/choosers/telemetry_chooser.rb +0 -2
  8. data/lib/cosmos/gui/dialogs/about_dialog.rb +2 -2
  9. data/lib/cosmos/gui/dialogs/exception_dialog.rb +2 -2
  10. data/lib/cosmos/gui/dialogs/progress_dialog.rb +11 -5
  11. data/lib/cosmos/gui/dialogs/splash.rb +32 -10
  12. data/lib/cosmos/gui/dialogs/tlm_details_dialog.rb +1 -1
  13. data/lib/cosmos/gui/line_graph/line_graph_drawing.rb +2 -2
  14. data/lib/cosmos/gui/qt.rb +22 -22
  15. data/lib/cosmos/io/json_drb.rb +4 -4
  16. data/lib/cosmos/io/json_rpc.rb +21 -21
  17. data/lib/cosmos/packet_logs/packet_log_writer.rb +18 -20
  18. data/lib/cosmos/packets/commands.rb +8 -6
  19. data/lib/cosmos/packets/limits.rb +3 -2
  20. data/lib/cosmos/packets/packet.rb +14 -11
  21. data/lib/cosmos/packets/parsers/limits_parser.rb +1 -1
  22. data/lib/cosmos/packets/parsers/macro_parser.rb +4 -4
  23. data/lib/cosmos/packets/parsers/state_parser.rb +1 -1
  24. data/lib/cosmos/packets/structure.rb +2 -2
  25. data/lib/cosmos/packets/telemetry.rb +5 -4
  26. data/lib/cosmos/script/script.rb +6 -6
  27. data/lib/cosmos/streams/tcpip_socket_stream.rb +2 -1
  28. data/lib/cosmos/streams/template_stream_protocol.rb +1 -1
  29. data/lib/cosmos/tools/cmd_sender/cmd_sender.rb +1 -1
  30. data/lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server_gui.rb +5 -8
  31. data/lib/cosmos/tools/cmd_tlm_server/gui/interfaces_tab.rb +4 -3
  32. data/lib/cosmos/tools/cmd_tlm_server/gui/packets_tab.rb +9 -3
  33. data/lib/cosmos/tools/cmd_tlm_server/gui/status_tab.rb +15 -11
  34. data/lib/cosmos/tools/data_viewer/data_viewer.rb +1 -1
  35. data/lib/cosmos/tools/data_viewer/data_viewer_component.rb +2 -2
  36. data/lib/cosmos/tools/handbook_creator/handbook_creator.rb +2 -2
  37. data/lib/cosmos/tools/handbook_creator/handbook_creator_config.rb +0 -2
  38. data/lib/cosmos/tools/limits_monitor/limits_monitor.rb +1 -1
  39. data/lib/cosmos/tools/replay/replay.rb +2 -2
  40. data/lib/cosmos/tools/script_runner/script_audit.rb +1 -1
  41. data/lib/cosmos/tools/script_runner/script_runner.rb +1 -1
  42. data/lib/cosmos/tools/script_runner/script_runner_frame.rb +3 -7
  43. data/lib/cosmos/tools/table_manager/table_config.rb +1 -1
  44. data/lib/cosmos/tools/test_runner/results_writer.rb +1 -1
  45. data/lib/cosmos/tools/test_runner/test_runner.rb +2 -2
  46. data/lib/cosmos/tools/tlm_extractor/tlm_extractor.rb +2 -1
  47. data/lib/cosmos/tools/tlm_extractor/tlm_extractor_processor.rb +1 -1
  48. data/lib/cosmos/tools/tlm_grapher/data_object_adders/xy_data_object_adder.rb +1 -0
  49. data/lib/cosmos/tools/tlm_grapher/data_object_editors/housekeeping_data_object_editor.rb +1 -0
  50. data/lib/cosmos/tools/tlm_grapher/data_object_editors/xy_data_object_editor.rb +1 -0
  51. data/lib/cosmos/tools/tlm_grapher/tabbed_plots/overview_tabbed_plots.rb +3 -3
  52. data/lib/cosmos/tools/tlm_viewer/tlm_viewer.rb +1 -3
  53. data/lib/cosmos/top_level.rb +2 -6
  54. data/lib/cosmos/utilities/ruby_lex_utils.rb +1 -1
  55. data/lib/cosmos/version.rb +5 -5
  56. data/lib/cosmos/win32/win32_main.rb +11 -7
  57. data/spec/ccsds/ccsds_packet_spec.rb +28 -28
  58. data/spec/ccsds/ccsds_parser_spec.rb +27 -27
  59. data/spec/config/config_parser_spec.rb +88 -88
  60. data/spec/conversions/conversion_spec.rb +3 -3
  61. data/spec/conversions/generic_conversion_spec.rb +9 -9
  62. data/spec/conversions/new_packet_log_conversion_spec.rb +4 -4
  63. data/spec/conversions/polynomial_conversion_spec.rb +7 -7
  64. data/spec/conversions/processor_conversion_spec.rb +9 -9
  65. data/spec/conversions/received_count_conversion_spec.rb +7 -7
  66. data/spec/conversions/received_time_formatted_conversion_spec.rb +9 -9
  67. data/spec/conversions/received_time_seconds_conversion_spec.rb +9 -9
  68. data/spec/conversions/segmented_polynomial_conversion_spec.rb +11 -11
  69. data/spec/conversions/unix_time_formatted_conversion_spec.rb +13 -13
  70. data/spec/conversions/unix_time_seconds_conversion_spec.rb +13 -13
  71. data/spec/core_ext/array_spec.rb +76 -76
  72. data/spec/core_ext/class_spec.rb +3 -3
  73. data/spec/core_ext/cosmos_io_spec.rb +16 -16
  74. data/spec/core_ext/exception_spec.rb +19 -19
  75. data/spec/core_ext/file_spec.rb +16 -16
  76. data/spec/core_ext/hash_spec.rb +3 -3
  77. data/spec/core_ext/io_spec.rb +2 -2
  78. data/spec/core_ext/kernel_spec.rb +2 -2
  79. data/spec/core_ext/math_spec.rb +43 -43
  80. data/spec/core_ext/matrix_spec.rb +22 -22
  81. data/spec/core_ext/objectspace_spec.rb +6 -6
  82. data/spec/core_ext/range_spec.rb +2 -2
  83. data/spec/core_ext/socket_spec.rb +4 -4
  84. data/spec/core_ext/string_spec.rb +67 -67
  85. data/spec/core_ext/stringio_spec.rb +2 -2
  86. data/spec/core_ext/time_spec.rb +82 -82
  87. data/spec/gui/line_graph/line_clip_spec.rb +34 -34
  88. data/spec/interfaces/interface_spec.rb +46 -46
  89. data/spec/interfaces/linc_interface_spec.rb +26 -26
  90. data/spec/interfaces/serial_interface_spec.rb +16 -16
  91. data/spec/interfaces/simulated_target_interface_spec.rb +21 -21
  92. data/spec/interfaces/stream_interface_spec.rb +22 -22
  93. data/spec/interfaces/tcpip_client_interface_spec.rb +14 -14
  94. data/spec/interfaces/tcpip_server_interface_spec.rb +41 -41
  95. data/spec/interfaces/udp_interface_spec.rb +46 -46
  96. data/spec/io/buffered_file_spec.rb +50 -50
  97. data/spec/io/io_multiplexer_spec.rb +9 -9
  98. data/spec/io/json_drb_object_spec.rb +7 -7
  99. data/spec/io/json_drb_spec.rb +55 -55
  100. data/spec/io/json_rpc_spec.rb +68 -68
  101. data/spec/io/raw_logger_pair_spec.rb +28 -28
  102. data/spec/io/raw_logger_spec.rb +22 -22
  103. data/spec/io/serial_driver_spec.rb +3 -3
  104. data/spec/io/stderr_spec.rb +2 -2
  105. data/spec/io/stdout_spec.rb +2 -2
  106. data/spec/io/tcpip_server_spec.rb +62 -62
  107. data/spec/io/udp_sockets_spec.rb +19 -19
  108. data/spec/io/win32_serial_driver_spec.rb +10 -10
  109. data/spec/packet_logs/meta_packet_log_writer_spec.rb +32 -32
  110. data/spec/packet_logs/packet_log_reader_spec.rb +138 -138
  111. data/spec/packet_logs/packet_log_writer_pair_spec.rb +3 -3
  112. data/spec/packet_logs/packet_log_writer_spec.rb +26 -26
  113. data/spec/packets/binary_accessor_spec.rb +672 -672
  114. data/spec/packets/commands_spec.rb +123 -123
  115. data/spec/packets/limits_response_spec.rb +1 -1
  116. data/spec/packets/limits_spec.rb +69 -69
  117. data/spec/packets/packet_config_spec.rb +93 -93
  118. data/spec/packets/packet_item_limits_spec.rb +46 -46
  119. data/spec/packets/packet_item_spec.rb +108 -108
  120. data/spec/packets/packet_spec.rb +364 -348
  121. data/spec/packets/parsers/format_string_parser_spec.rb +13 -13
  122. data/spec/packets/parsers/limits_parser_spec.rb +8 -8
  123. data/spec/packets/parsers/limits_response_parser_spec.rb +9 -9
  124. data/spec/packets/parsers/macro_parser_spec.rb +34 -6
  125. data/spec/packets/parsers/packet_parser_spec.rb +6 -6
  126. data/spec/packets/parsers/processor_parser_spec.rb +7 -7
  127. data/spec/packets/parsers/state_parser_spec.rb +23 -23
  128. data/spec/packets/structure_item_spec.rb +62 -62
  129. data/spec/packets/structure_spec.rb +183 -183
  130. data/spec/packets/telemetry_spec.rb +174 -174
  131. data/spec/processors/new_packet_log_processor_spec.rb +4 -4
  132. data/spec/processors/processor_spec.rb +9 -9
  133. data/spec/processors/statistics_processor_spec.rb +21 -21
  134. data/spec/processors/watermark_processor_spec.rb +12 -12
  135. data/spec/script/script_spec.rb +158 -158
  136. data/spec/spec_helper.rb +44 -13
  137. data/spec/streams/burst_stream_protocol_spec.rb +8 -8
  138. data/spec/streams/fixed_stream_protocol_spec.rb +26 -26
  139. data/spec/streams/length_stream_protocol_spec.rb +27 -27
  140. data/spec/streams/preidentified_stream_protocol_spec.rb +25 -25
  141. data/spec/streams/serial_stream_spec.rb +19 -19
  142. data/spec/streams/stream_protocol_spec.rb +52 -52
  143. data/spec/streams/stream_spec.rb +1 -1
  144. data/spec/streams/tcpip_client_stream_spec.rb +7 -7
  145. data/spec/streams/tcpip_socket_stream_spec.rb +84 -49
  146. data/spec/streams/template_stream_protocol_spec.rb +17 -17
  147. data/spec/streams/terminated_stream_protocol_spec.rb +19 -19
  148. data/spec/system/system_spec.rb +95 -95
  149. data/spec/system/target_spec.rb +32 -32
  150. data/spec/tools/cmd_tlm_server/api_spec.rb +386 -386
  151. data/spec/tools/cmd_tlm_server/background_task_spec.rb +3 -3
  152. data/spec/tools/cmd_tlm_server/background_tasks_spec.rb +8 -8
  153. data/spec/tools/cmd_tlm_server/cmd_tlm_server_config_spec.rb +57 -57
  154. data/spec/tools/cmd_tlm_server/cmd_tlm_server_spec.rb +85 -85
  155. data/spec/tools/cmd_tlm_server/commanding_spec.rb +11 -11
  156. data/spec/tools/cmd_tlm_server/connections_spec.rb +23 -23
  157. data/spec/tools/cmd_tlm_server/interface_thread_spec.rb +57 -57
  158. data/spec/tools/cmd_tlm_server/interfaces_spec.rb +32 -32
  159. data/spec/tools/cmd_tlm_server/packet_logging_spec.rb +17 -17
  160. data/spec/tools/cmd_tlm_server/router_thread_spec.rb +15 -15
  161. data/spec/tools/cmd_tlm_server/routers_spec.rb +36 -36
  162. data/spec/top_level/top_level_spec.rb +60 -60
  163. data/spec/utilities/crc_spec.rb +6 -6
  164. data/spec/utilities/csv_spec.rb +13 -13
  165. data/spec/utilities/logger_spec.rb +20 -20
  166. data/spec/utilities/message_log_spec.rb +13 -13
  167. data/spec/utilities/quaternion_spec.rb +30 -30
  168. data/spec/utilities/ruby_lex_utils_spec.rb +14 -14
  169. data/test/benchmarks/binary_accessor_benchmark.rb +14 -0
  170. data/test/benchmarks/gsub_benchmark.rb +114 -0
  171. data/test/performance/PACKETS.bat +1 -0
  172. data/test/performance/Rakefile +77 -0
  173. data/test/performance/THREADS.bat +1 -0
  174. data/test/performance/config/data/attitude.bin +0 -0
  175. data/test/performance/config/data/crc.txt +206 -0
  176. data/test/performance/config/data/diamond.STL +58 -0
  177. data/test/performance/config/data/groundoff.gif +0 -0
  178. data/test/performance/config/data/groundon.gif +0 -0
  179. data/test/performance/config/data/hselectoff.gif +0 -0
  180. data/test/performance/config/data/hselecton.gif +0 -0
  181. data/test/performance/config/data/hswitchoff.gif +0 -0
  182. data/test/performance/config/data/hswitchon.gif +0 -0
  183. data/test/performance/config/data/meta_init.txt +4 -0
  184. data/test/performance/config/data/position.bin +0 -0
  185. data/test/performance/config/data/poweroff.gif +0 -0
  186. data/test/performance/config/data/poweron.gif +0 -0
  187. data/test/performance/config/data/satellite.gif +0 -0
  188. data/test/performance/config/data/tada.wav +0 -0
  189. data/test/performance/config/data/vswitchoff.gif +0 -0
  190. data/test/performance/config/data/vswitchon.gif +0 -0
  191. data/test/performance/config/system/system_packets.txt +39 -0
  192. data/test/performance/config/system/system_threads.txt +59 -0
  193. data/test/performance/config/targets/COSMOS/cmd_tlm/cosmos_server_cmds.txt +41 -0
  194. data/test/performance/config/targets/COSMOS/cmd_tlm/cosmos_server_tlm.txt +15 -0
  195. data/test/performance/config/targets/COSMOS/cmd_tlm_server.txt +6 -0
  196. data/test/performance/config/targets/COSMOS/screens/limits_change.txt +20 -0
  197. data/test/performance/config/targets/COSMOS/screens/version.txt +19 -0
  198. data/test/performance/config/targets/COSMOS/target.txt +11 -0
  199. data/test/performance/config/targets/EXAMPLE/cmd_tlm/example_cmds.txt +17 -0
  200. data/test/performance/config/targets/EXAMPLE/cmd_tlm/example_tlm.txt +18 -0
  201. data/test/performance/config/targets/EXAMPLE/cmd_tlm_server.txt +6 -0
  202. data/test/performance/config/targets/EXAMPLE/lib/example_interface.rb +22 -0
  203. data/test/performance/config/targets/EXAMPLE/target.txt +7 -0
  204. data/test/performance/config/targets/SYSTEM/screens/status.txt +12 -0
  205. data/test/performance/config/tools/cmd_tlm_server/cmd_tlm_server_packets.txt +34 -0
  206. data/test/performance/config/tools/cmd_tlm_server/cmd_tlm_server_threads.txt +68 -0
  207. data/test/performance/config/tools/data_viewer/data_viewer.txt +11 -0
  208. data/test/performance/config/tools/handbook_creator/default_toc.xsl +59 -0
  209. data/test/performance/config/tools/handbook_creator/handbook_creator.txt +66 -0
  210. data/test/performance/config/tools/handbook_creator/templates/command_packets.html.erb +86 -0
  211. data/test/performance/config/tools/handbook_creator/templates/command_toc.html.erb +38 -0
  212. data/test/performance/config/tools/handbook_creator/templates/footer.html.erb +9 -0
  213. data/test/performance/config/tools/handbook_creator/templates/header.html.erb +25 -0
  214. data/test/performance/config/tools/handbook_creator/templates/limits_groups.html.erb +13 -0
  215. data/test/performance/config/tools/handbook_creator/templates/nav.html.erb +27 -0
  216. data/test/performance/config/tools/handbook_creator/templates/overview.html.erb +1 -0
  217. data/test/performance/config/tools/handbook_creator/templates/pdf_cover.html.erb +23 -0
  218. data/test/performance/config/tools/handbook_creator/templates/pdf_footer.html.erb +33 -0
  219. data/test/performance/config/tools/handbook_creator/templates/pdf_header.html.erb +41 -0
  220. data/test/performance/config/tools/handbook_creator/templates/telemetry_packets.html.erb +80 -0
  221. data/test/performance/config/tools/handbook_creator/templates/telemetry_toc.html.erb +38 -0
  222. data/test/performance/config/tools/handbook_creator/templates/title.html.erb +1 -0
  223. data/test/performance/config/tools/launcher/launcher_packets.txt +29 -0
  224. data/test/performance/config/tools/launcher/launcher_threads.txt +70 -0
  225. data/test/performance/config/tools/limits_monitor/README.txt +1 -0
  226. data/test/performance/config/tools/opengl_builder/README.txt +1 -0
  227. data/test/performance/config/tools/script_runner/script_runner.txt +3 -0
  228. data/test/performance/config/tools/table_manager/ConfigTables_def.txt +8 -0
  229. data/test/performance/config/tools/table_manager/ExampleTableDefinition.txt +24 -0
  230. data/test/performance/config/tools/table_manager/MCConfigurationTable_fsw1_def.txt +25 -0
  231. data/test/performance/config/tools/table_manager/MCConfigurationTable_fsw2_def.txt +25 -0
  232. data/test/performance/config/tools/table_manager/PPSSelectionTable_def.txt +8 -0
  233. data/test/performance/config/tools/table_manager/TLMMonitoringTable_def.txt +248 -0
  234. data/test/performance/config/tools/test_runner/test_runner.txt +17 -0
  235. data/test/performance/config/tools/tlm_extractor/tlm_extractor.txt +13 -0
  236. data/test/performance/config/tools/tlm_extractor/tlm_extractor2.txt +2 -0
  237. data/test/performance/config/tools/tlm_extractor/tlm_extractor3.txt +2 -0
  238. data/test/performance/config/tools/tlm_extractor/tlm_extractor4.txt +2 -0
  239. data/test/performance/config/tools/tlm_grapher/README.txt +1 -0
  240. data/test/performance/config/tools/tlm_viewer/tlm_viewer.txt +41 -0
  241. data/test/performance/lib/example_background_task.rb +57 -0
  242. data/test/performance/lib/example_target.rb +120 -0
  243. data/test/performance/lib/scpi_target.rb +74 -0
  244. data/test/performance/lib/user_version.rb +3 -0
  245. data/test/performance/outputs/handbooks/README.txt +1 -0
  246. data/test/performance/outputs/logs/README.txt +1 -0
  247. data/test/performance/outputs/saved_config/README.txt +1 -0
  248. data/test/performance/outputs/tables/README.txt +1 -0
  249. data/test/performance/outputs/tmp/README.txt +1 -0
  250. data/test/performance/procedures/checks.rb +11 -0
  251. data/test/performance/procedures/clear_util.rb +7 -0
  252. data/test/performance/procedures/collect.rb +18 -0
  253. data/test/performance/procedures/collect_util.rb +14 -0
  254. data/test/performance/procedures/cosmos_api_test.rb +293 -0
  255. data/test/performance/procedures/disconnect.rb +29 -0
  256. data/test/performance/procedures/example_test.rb +182 -0
  257. data/test/performance/procedures/plot_test.rb +8 -0
  258. data/test/performance/procedures/procedure.rb +3 -0
  259. data/test/performance/procedures/run_example_test.rb +3 -0
  260. data/test/performance/procedures/test.rb +51 -0
  261. data/test/performance/tools/CmdExtractor +14 -0
  262. data/test/performance/tools/CmdExtractor.bat +59 -0
  263. data/test/performance/tools/CmdSender +14 -0
  264. data/test/performance/tools/CmdSender.bat +59 -0
  265. data/test/performance/tools/CmdTlmServer +16 -0
  266. data/test/performance/tools/CmdTlmServer.bat +59 -0
  267. data/test/performance/tools/CmdTlmServerMemProf +20 -0
  268. data/test/performance/tools/CmdTlmServerMemProf.bat +59 -0
  269. data/test/performance/tools/DataViewer +14 -0
  270. data/test/performance/tools/DataViewer.bat +59 -0
  271. data/test/performance/tools/ExampleTarget +14 -0
  272. data/test/performance/tools/ExampleTarget.bat +59 -0
  273. data/test/performance/tools/HandbookCreator +14 -0
  274. data/test/performance/tools/HandbookCreator.bat +61 -0
  275. data/test/performance/tools/Launcher +14 -0
  276. data/test/performance/tools/Launcher.bat +59 -0
  277. data/test/performance/tools/LimitsMonitor +14 -0
  278. data/test/performance/tools/LimitsMonitor.bat +59 -0
  279. data/test/performance/tools/OpenGLBuilder +14 -0
  280. data/test/performance/tools/OpenGLBuilder.bat +59 -0
  281. data/test/performance/tools/PacketViewer +14 -0
  282. data/test/performance/tools/PacketViewer.bat +59 -0
  283. data/test/performance/tools/Replay +14 -0
  284. data/test/performance/tools/Replay.bat +59 -0
  285. data/test/performance/tools/ScpiTarget +14 -0
  286. data/test/performance/tools/ScpiTarget.bat +59 -0
  287. data/test/performance/tools/ScriptRunner +14 -0
  288. data/test/performance/tools/ScriptRunner.bat +59 -0
  289. data/test/performance/tools/TableManager +14 -0
  290. data/test/performance/tools/TableManager.bat +59 -0
  291. data/test/performance/tools/TestRunner +14 -0
  292. data/test/performance/tools/TestRunner.bat +59 -0
  293. data/test/performance/tools/TlmExtractor +14 -0
  294. data/test/performance/tools/TlmExtractor.bat +59 -0
  295. data/test/performance/tools/TlmGrapher +14 -0
  296. data/test/performance/tools/TlmGrapher.bat +59 -0
  297. data/test/performance/tools/TlmViewer +14 -0
  298. data/test/performance/tools/TlmViewer.bat +59 -0
  299. data/test/performance/tools/mac/CmdExtractor.app/Contents/Info.plist +38 -0
  300. data/test/performance/tools/mac/CmdExtractor.app/Contents/MacOS/CmdExtractor.rb +15 -0
  301. data/test/performance/tools/mac/CmdExtractor.app/Contents/MacOS/main.sh +6 -0
  302. data/test/performance/tools/mac/CmdExtractor.app/Contents/Resources/appIcon.icns +0 -0
  303. data/test/performance/tools/mac/CmdSender.app/Contents/Info.plist +38 -0
  304. data/test/performance/tools/mac/CmdSender.app/Contents/MacOS/CmdSender.rb +15 -0
  305. data/test/performance/tools/mac/CmdSender.app/Contents/MacOS/main.sh +6 -0
  306. data/test/performance/tools/mac/CmdSender.app/Contents/Resources/appIcon.icns +0 -0
  307. data/test/performance/tools/mac/CmdTlmServer.app/Contents/Info.plist +38 -0
  308. data/test/performance/tools/mac/CmdTlmServer.app/Contents/MacOS/CmdTlmServer.rb +15 -0
  309. data/test/performance/tools/mac/CmdTlmServer.app/Contents/MacOS/main.sh +6 -0
  310. data/test/performance/tools/mac/CmdTlmServer.app/Contents/Resources/appIcon.icns +0 -0
  311. data/test/performance/tools/mac/DataViewer.app/Contents/Info.plist +38 -0
  312. data/test/performance/tools/mac/DataViewer.app/Contents/MacOS/DataViewer.rb +15 -0
  313. data/test/performance/tools/mac/DataViewer.app/Contents/MacOS/main.sh +6 -0
  314. data/test/performance/tools/mac/DataViewer.app/Contents/Resources/appIcon.icns +0 -0
  315. data/test/performance/tools/mac/HandbookCreator.app/Contents/Info.plist +38 -0
  316. data/test/performance/tools/mac/HandbookCreator.app/Contents/MacOS/HandbookCreator.rb +15 -0
  317. data/test/performance/tools/mac/HandbookCreator.app/Contents/MacOS/main.sh +6 -0
  318. data/test/performance/tools/mac/HandbookCreator.app/Contents/Resources/appIcon.icns +0 -0
  319. data/test/performance/tools/mac/Launcher.app/Contents/Info.plist +38 -0
  320. data/test/performance/tools/mac/Launcher.app/Contents/MacOS/Launcher.rb +15 -0
  321. data/test/performance/tools/mac/Launcher.app/Contents/MacOS/main.sh +6 -0
  322. data/test/performance/tools/mac/Launcher.app/Contents/Resources/appIcon.icns +0 -0
  323. data/test/performance/tools/mac/LimitsMonitor.app/Contents/Info.plist +38 -0
  324. data/test/performance/tools/mac/LimitsMonitor.app/Contents/MacOS/LimitsMonitor.rb +15 -0
  325. data/test/performance/tools/mac/LimitsMonitor.app/Contents/MacOS/main.sh +6 -0
  326. data/test/performance/tools/mac/LimitsMonitor.app/Contents/Resources/appIcon.icns +0 -0
  327. data/test/performance/tools/mac/OpenGLBuilder.app/Contents/Info.plist +38 -0
  328. data/test/performance/tools/mac/OpenGLBuilder.app/Contents/MacOS/OpenGLBuilder.rb +15 -0
  329. data/test/performance/tools/mac/OpenGLBuilder.app/Contents/MacOS/main.sh +6 -0
  330. data/test/performance/tools/mac/OpenGLBuilder.app/Contents/Resources/appIcon.icns +0 -0
  331. data/test/performance/tools/mac/PacketViewer.app/Contents/Info.plist +38 -0
  332. data/test/performance/tools/mac/PacketViewer.app/Contents/MacOS/PacketViewer.rb +15 -0
  333. data/test/performance/tools/mac/PacketViewer.app/Contents/MacOS/main.sh +6 -0
  334. data/test/performance/tools/mac/PacketViewer.app/Contents/Resources/appIcon.icns +0 -0
  335. data/test/performance/tools/mac/Replay.app/Contents/Info.plist +38 -0
  336. data/test/performance/tools/mac/Replay.app/Contents/MacOS/Replay.rb +15 -0
  337. data/test/performance/tools/mac/Replay.app/Contents/MacOS/main.sh +6 -0
  338. data/test/performance/tools/mac/Replay.app/Contents/Resources/appIcon.icns +0 -0
  339. data/test/performance/tools/mac/ScriptRunner.app/Contents/Info.plist +38 -0
  340. data/test/performance/tools/mac/ScriptRunner.app/Contents/MacOS/ScriptRunner.rb +15 -0
  341. data/test/performance/tools/mac/ScriptRunner.app/Contents/MacOS/main.sh +6 -0
  342. data/test/performance/tools/mac/ScriptRunner.app/Contents/Resources/appIcon.icns +0 -0
  343. data/test/performance/tools/mac/TableManager.app/Contents/Info.plist +38 -0
  344. data/test/performance/tools/mac/TableManager.app/Contents/MacOS/TableManager.rb +15 -0
  345. data/test/performance/tools/mac/TableManager.app/Contents/MacOS/main.sh +6 -0
  346. data/test/performance/tools/mac/TableManager.app/Contents/Resources/appIcon.icns +0 -0
  347. data/test/performance/tools/mac/TestRunner.app/Contents/Info.plist +38 -0
  348. data/test/performance/tools/mac/TestRunner.app/Contents/MacOS/TestRunner.rb +15 -0
  349. data/test/performance/tools/mac/TestRunner.app/Contents/MacOS/main.sh +6 -0
  350. data/test/performance/tools/mac/TestRunner.app/Contents/Resources/appIcon.icns +0 -0
  351. data/test/performance/tools/mac/TlmExtractor.app/Contents/Info.plist +38 -0
  352. data/test/performance/tools/mac/TlmExtractor.app/Contents/MacOS/TlmExtractor.rb +15 -0
  353. data/test/performance/tools/mac/TlmExtractor.app/Contents/MacOS/main.sh +6 -0
  354. data/test/performance/tools/mac/TlmExtractor.app/Contents/Resources/appIcon.icns +0 -0
  355. data/test/performance/tools/mac/TlmGrapher.app/Contents/Info.plist +38 -0
  356. data/test/performance/tools/mac/TlmGrapher.app/Contents/MacOS/TlmGrapher.rb +15 -0
  357. data/test/performance/tools/mac/TlmGrapher.app/Contents/MacOS/main.sh +6 -0
  358. data/test/performance/tools/mac/TlmGrapher.app/Contents/Resources/appIcon.icns +0 -0
  359. data/test/performance/tools/mac/TlmViewer.app/Contents/Info.plist +38 -0
  360. data/test/performance/tools/mac/TlmViewer.app/Contents/MacOS/TlmViewer.rb +15 -0
  361. data/test/performance/tools/mac/TlmViewer.app/Contents/MacOS/main.sh +6 -0
  362. data/test/performance/tools/mac/TlmViewer.app/Contents/Resources/appIcon.icns +0 -0
  363. data/test/performance/userpath.txt +1 -0
  364. metadata +197 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a73e644c741cdb4b6c8ee2bcc036cc82cb9156e2
4
- data.tar.gz: 60c9ba5fd730651c722969b6a4609c72fde6cdf0
3
+ metadata.gz: ec57be752a23c94586d0b64fcdd5342effbbed1b
4
+ data.tar.gz: 2b8c3c202387161e26e17d6bcbfccd0cb8806a08
5
5
  SHA512:
6
- metadata.gz: c6054c51d2b5d87f0e8932c5a70877b18b66783006082e34bfd853a9f48d5af634a5167b4c9503f6f4393f764a0d530977cd006d6151461ac17fe806ff47c2b7
7
- data.tar.gz: 3e34446fe6492174c11f196be43c9528341713eb75b8834609da6d8594b7da371c771f1a9429a73569d3a34f3a2028b24e3a1096ccbf4423d2915421a6faf1ae
6
+ metadata.gz: 76dd83d9776276a8f176bb084ec52bbd16f318ca54596cf536925a706676f3207faa2686784bce03278905a4039cdf2d0626f1d06def8b19fb2e09e1e8d7240d
7
+ data.tar.gz: 9ac8d4e05bf1a378da705d0bed15e52032e8bcdd41603a2700d6c364e896f17dc6210483969ac4b9b2ebcf8d1241a556990d16401fe97f32d18127289185886a
@@ -1137,3 +1137,198 @@ spec/utilities/quaternion_spec.rb
1137
1137
  spec/utilities/ruby_lex_utils_spec.rb
1138
1138
  tasks/manifest.rake
1139
1139
  tasks/spec.rake
1140
+ test/benchmarks/binary_accessor_benchmark.rb
1141
+ test/benchmarks/gsub_benchmark.rb
1142
+ test/performance/PACKETS.bat
1143
+ test/performance/Rakefile
1144
+ test/performance/THREADS.bat
1145
+ test/performance/config/data/attitude.bin
1146
+ test/performance/config/data/crc.txt
1147
+ test/performance/config/data/diamond.STL
1148
+ test/performance/config/data/groundoff.gif
1149
+ test/performance/config/data/groundon.gif
1150
+ test/performance/config/data/hselectoff.gif
1151
+ test/performance/config/data/hselecton.gif
1152
+ test/performance/config/data/hswitchoff.gif
1153
+ test/performance/config/data/hswitchon.gif
1154
+ test/performance/config/data/meta_init.txt
1155
+ test/performance/config/data/position.bin
1156
+ test/performance/config/data/poweroff.gif
1157
+ test/performance/config/data/poweron.gif
1158
+ test/performance/config/data/satellite.gif
1159
+ test/performance/config/data/tada.wav
1160
+ test/performance/config/data/vswitchoff.gif
1161
+ test/performance/config/data/vswitchon.gif
1162
+ test/performance/config/system/system_packets.txt
1163
+ test/performance/config/system/system_threads.txt
1164
+ test/performance/config/targets/COSMOS/cmd_tlm/cosmos_server_cmds.txt
1165
+ test/performance/config/targets/COSMOS/cmd_tlm/cosmos_server_tlm.txt
1166
+ test/performance/config/targets/COSMOS/cmd_tlm_server.txt
1167
+ test/performance/config/targets/COSMOS/screens/limits_change.txt
1168
+ test/performance/config/targets/COSMOS/screens/version.txt
1169
+ test/performance/config/targets/COSMOS/target.txt
1170
+ test/performance/config/targets/EXAMPLE/cmd_tlm/example_cmds.txt
1171
+ test/performance/config/targets/EXAMPLE/cmd_tlm/example_tlm.txt
1172
+ test/performance/config/targets/EXAMPLE/cmd_tlm_server.txt
1173
+ test/performance/config/targets/EXAMPLE/lib/example_interface.rb
1174
+ test/performance/config/targets/EXAMPLE/target.txt
1175
+ test/performance/config/targets/SYSTEM/screens/status.txt
1176
+ test/performance/config/tools/cmd_tlm_server/cmd_tlm_server_packets.txt
1177
+ test/performance/config/tools/cmd_tlm_server/cmd_tlm_server_threads.txt
1178
+ test/performance/config/tools/data_viewer/data_viewer.txt
1179
+ test/performance/config/tools/handbook_creator/default_toc.xsl
1180
+ test/performance/config/tools/handbook_creator/handbook_creator.txt
1181
+ test/performance/config/tools/handbook_creator/templates/command_packets.html.erb
1182
+ test/performance/config/tools/handbook_creator/templates/command_toc.html.erb
1183
+ test/performance/config/tools/handbook_creator/templates/footer.html.erb
1184
+ test/performance/config/tools/handbook_creator/templates/header.html.erb
1185
+ test/performance/config/tools/handbook_creator/templates/limits_groups.html.erb
1186
+ test/performance/config/tools/handbook_creator/templates/nav.html.erb
1187
+ test/performance/config/tools/handbook_creator/templates/overview.html.erb
1188
+ test/performance/config/tools/handbook_creator/templates/pdf_cover.html.erb
1189
+ test/performance/config/tools/handbook_creator/templates/pdf_footer.html.erb
1190
+ test/performance/config/tools/handbook_creator/templates/pdf_header.html.erb
1191
+ test/performance/config/tools/handbook_creator/templates/telemetry_packets.html.erb
1192
+ test/performance/config/tools/handbook_creator/templates/telemetry_toc.html.erb
1193
+ test/performance/config/tools/handbook_creator/templates/title.html.erb
1194
+ test/performance/config/tools/launcher/launcher_packets.txt
1195
+ test/performance/config/tools/launcher/launcher_threads.txt
1196
+ test/performance/config/tools/limits_monitor/README.txt
1197
+ test/performance/config/tools/opengl_builder/README.txt
1198
+ test/performance/config/tools/script_runner/script_runner.txt
1199
+ test/performance/config/tools/table_manager/ConfigTables_def.txt
1200
+ test/performance/config/tools/table_manager/ExampleTableDefinition.txt
1201
+ test/performance/config/tools/table_manager/MCConfigurationTable_fsw1_def.txt
1202
+ test/performance/config/tools/table_manager/MCConfigurationTable_fsw2_def.txt
1203
+ test/performance/config/tools/table_manager/PPSSelectionTable_def.txt
1204
+ test/performance/config/tools/table_manager/TLMMonitoringTable_def.txt
1205
+ test/performance/config/tools/test_runner/test_runner.txt
1206
+ test/performance/config/tools/tlm_extractor/tlm_extractor.txt
1207
+ test/performance/config/tools/tlm_extractor/tlm_extractor2.txt
1208
+ test/performance/config/tools/tlm_extractor/tlm_extractor3.txt
1209
+ test/performance/config/tools/tlm_extractor/tlm_extractor4.txt
1210
+ test/performance/config/tools/tlm_grapher/README.txt
1211
+ test/performance/config/tools/tlm_viewer/tlm_viewer.txt
1212
+ test/performance/lib/example_background_task.rb
1213
+ test/performance/lib/example_target.rb
1214
+ test/performance/lib/scpi_target.rb
1215
+ test/performance/lib/user_version.rb
1216
+ test/performance/outputs/handbooks/README.txt
1217
+ test/performance/outputs/logs/README.txt
1218
+ test/performance/outputs/saved_config/README.txt
1219
+ test/performance/outputs/tables/README.txt
1220
+ test/performance/outputs/tmp/README.txt
1221
+ test/performance/procedures/checks.rb
1222
+ test/performance/procedures/clear_util.rb
1223
+ test/performance/procedures/collect.rb
1224
+ test/performance/procedures/collect_util.rb
1225
+ test/performance/procedures/cosmos_api_test.rb
1226
+ test/performance/procedures/disconnect.rb
1227
+ test/performance/procedures/example_test.rb
1228
+ test/performance/procedures/plot_test.rb
1229
+ test/performance/procedures/procedure.rb
1230
+ test/performance/procedures/run_example_test.rb
1231
+ test/performance/procedures/test.rb
1232
+ test/performance/tools/CmdExtractor
1233
+ test/performance/tools/CmdExtractor.bat
1234
+ test/performance/tools/CmdSender
1235
+ test/performance/tools/CmdSender.bat
1236
+ test/performance/tools/CmdTlmServer
1237
+ test/performance/tools/CmdTlmServer.bat
1238
+ test/performance/tools/CmdTlmServerMemProf
1239
+ test/performance/tools/CmdTlmServerMemProf.bat
1240
+ test/performance/tools/DataViewer
1241
+ test/performance/tools/DataViewer.bat
1242
+ test/performance/tools/ExampleTarget
1243
+ test/performance/tools/ExampleTarget.bat
1244
+ test/performance/tools/HandbookCreator
1245
+ test/performance/tools/HandbookCreator.bat
1246
+ test/performance/tools/Launcher
1247
+ test/performance/tools/Launcher.bat
1248
+ test/performance/tools/LimitsMonitor
1249
+ test/performance/tools/LimitsMonitor.bat
1250
+ test/performance/tools/OpenGLBuilder
1251
+ test/performance/tools/OpenGLBuilder.bat
1252
+ test/performance/tools/PacketViewer
1253
+ test/performance/tools/PacketViewer.bat
1254
+ test/performance/tools/Replay
1255
+ test/performance/tools/Replay.bat
1256
+ test/performance/tools/ScpiTarget
1257
+ test/performance/tools/ScpiTarget.bat
1258
+ test/performance/tools/ScriptRunner
1259
+ test/performance/tools/ScriptRunner.bat
1260
+ test/performance/tools/TableManager
1261
+ test/performance/tools/TableManager.bat
1262
+ test/performance/tools/TestRunner
1263
+ test/performance/tools/TestRunner.bat
1264
+ test/performance/tools/TlmExtractor
1265
+ test/performance/tools/TlmExtractor.bat
1266
+ test/performance/tools/TlmGrapher
1267
+ test/performance/tools/TlmGrapher.bat
1268
+ test/performance/tools/TlmViewer
1269
+ test/performance/tools/TlmViewer.bat
1270
+ test/performance/tools/mac/CmdExtractor.app/Contents/Info.plist
1271
+ test/performance/tools/mac/CmdExtractor.app/Contents/MacOS/CmdExtractor.rb
1272
+ test/performance/tools/mac/CmdExtractor.app/Contents/MacOS/main.sh
1273
+ test/performance/tools/mac/CmdExtractor.app/Contents/Resources/appIcon.icns
1274
+ test/performance/tools/mac/CmdSender.app/Contents/Info.plist
1275
+ test/performance/tools/mac/CmdSender.app/Contents/MacOS/CmdSender.rb
1276
+ test/performance/tools/mac/CmdSender.app/Contents/MacOS/main.sh
1277
+ test/performance/tools/mac/CmdSender.app/Contents/Resources/appIcon.icns
1278
+ test/performance/tools/mac/CmdTlmServer.app/Contents/Info.plist
1279
+ test/performance/tools/mac/CmdTlmServer.app/Contents/MacOS/CmdTlmServer.rb
1280
+ test/performance/tools/mac/CmdTlmServer.app/Contents/MacOS/main.sh
1281
+ test/performance/tools/mac/CmdTlmServer.app/Contents/Resources/appIcon.icns
1282
+ test/performance/tools/mac/DataViewer.app/Contents/Info.plist
1283
+ test/performance/tools/mac/DataViewer.app/Contents/MacOS/DataViewer.rb
1284
+ test/performance/tools/mac/DataViewer.app/Contents/MacOS/main.sh
1285
+ test/performance/tools/mac/DataViewer.app/Contents/Resources/appIcon.icns
1286
+ test/performance/tools/mac/HandbookCreator.app/Contents/Info.plist
1287
+ test/performance/tools/mac/HandbookCreator.app/Contents/MacOS/HandbookCreator.rb
1288
+ test/performance/tools/mac/HandbookCreator.app/Contents/MacOS/main.sh
1289
+ test/performance/tools/mac/HandbookCreator.app/Contents/Resources/appIcon.icns
1290
+ test/performance/tools/mac/Launcher.app/Contents/Info.plist
1291
+ test/performance/tools/mac/Launcher.app/Contents/MacOS/Launcher.rb
1292
+ test/performance/tools/mac/Launcher.app/Contents/MacOS/main.sh
1293
+ test/performance/tools/mac/Launcher.app/Contents/Resources/appIcon.icns
1294
+ test/performance/tools/mac/LimitsMonitor.app/Contents/Info.plist
1295
+ test/performance/tools/mac/LimitsMonitor.app/Contents/MacOS/LimitsMonitor.rb
1296
+ test/performance/tools/mac/LimitsMonitor.app/Contents/MacOS/main.sh
1297
+ test/performance/tools/mac/LimitsMonitor.app/Contents/Resources/appIcon.icns
1298
+ test/performance/tools/mac/OpenGLBuilder.app/Contents/Info.plist
1299
+ test/performance/tools/mac/OpenGLBuilder.app/Contents/MacOS/OpenGLBuilder.rb
1300
+ test/performance/tools/mac/OpenGLBuilder.app/Contents/MacOS/main.sh
1301
+ test/performance/tools/mac/OpenGLBuilder.app/Contents/Resources/appIcon.icns
1302
+ test/performance/tools/mac/PacketViewer.app/Contents/Info.plist
1303
+ test/performance/tools/mac/PacketViewer.app/Contents/MacOS/PacketViewer.rb
1304
+ test/performance/tools/mac/PacketViewer.app/Contents/MacOS/main.sh
1305
+ test/performance/tools/mac/PacketViewer.app/Contents/Resources/appIcon.icns
1306
+ test/performance/tools/mac/Replay.app/Contents/Info.plist
1307
+ test/performance/tools/mac/Replay.app/Contents/MacOS/Replay.rb
1308
+ test/performance/tools/mac/Replay.app/Contents/MacOS/main.sh
1309
+ test/performance/tools/mac/Replay.app/Contents/Resources/appIcon.icns
1310
+ test/performance/tools/mac/ScriptRunner.app/Contents/Info.plist
1311
+ test/performance/tools/mac/ScriptRunner.app/Contents/MacOS/ScriptRunner.rb
1312
+ test/performance/tools/mac/ScriptRunner.app/Contents/MacOS/main.sh
1313
+ test/performance/tools/mac/ScriptRunner.app/Contents/Resources/appIcon.icns
1314
+ test/performance/tools/mac/TableManager.app/Contents/Info.plist
1315
+ test/performance/tools/mac/TableManager.app/Contents/MacOS/TableManager.rb
1316
+ test/performance/tools/mac/TableManager.app/Contents/MacOS/main.sh
1317
+ test/performance/tools/mac/TableManager.app/Contents/Resources/appIcon.icns
1318
+ test/performance/tools/mac/TestRunner.app/Contents/Info.plist
1319
+ test/performance/tools/mac/TestRunner.app/Contents/MacOS/TestRunner.rb
1320
+ test/performance/tools/mac/TestRunner.app/Contents/MacOS/main.sh
1321
+ test/performance/tools/mac/TestRunner.app/Contents/Resources/appIcon.icns
1322
+ test/performance/tools/mac/TlmExtractor.app/Contents/Info.plist
1323
+ test/performance/tools/mac/TlmExtractor.app/Contents/MacOS/TlmExtractor.rb
1324
+ test/performance/tools/mac/TlmExtractor.app/Contents/MacOS/main.sh
1325
+ test/performance/tools/mac/TlmExtractor.app/Contents/Resources/appIcon.icns
1326
+ test/performance/tools/mac/TlmGrapher.app/Contents/Info.plist
1327
+ test/performance/tools/mac/TlmGrapher.app/Contents/MacOS/TlmGrapher.rb
1328
+ test/performance/tools/mac/TlmGrapher.app/Contents/MacOS/main.sh
1329
+ test/performance/tools/mac/TlmGrapher.app/Contents/Resources/appIcon.icns
1330
+ test/performance/tools/mac/TlmViewer.app/Contents/Info.plist
1331
+ test/performance/tools/mac/TlmViewer.app/Contents/MacOS/TlmViewer.rb
1332
+ test/performance/tools/mac/TlmViewer.app/Contents/MacOS/main.sh
1333
+ test/performance/tools/mac/TlmViewer.app/Contents/Resources/appIcon.icns
1334
+ test/performance/userpath.txt
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  > "The User Interface for Embedded Systems"
4
4
 
5
- [Documentation](https://github.com/BallAerospace/COSMOS/wiki)
5
+ [Documentation](http://cosmosrb.com)
6
6
 
7
7
  Ball Aerospace COSMOS provides all the functionality needed to send commands to and receive data from one or more embedded systems referred to as "targets". Out of the box functionality includes: Telemetry Display, Telemetry Graphing, Operational and Test Scripting, Command Sending, Logging, Log File Playback, Table Management, and more.
8
8
 
@@ -65,7 +65,7 @@ COSMOS is built and maintained by Ryan Melton (ryanatball/ryanmelt) and Jason Th
65
65
 
66
66
  gem install cosmos
67
67
 
68
- Note on non-windows systems you will need to have all necessary prerequisites installed (primarily cmake and qt 4.8.x). See the [Installation Guide](https://github.com/BallAerospace/COSMOS/wiki/Installation-Guide) for detailed instructions.
68
+ Note on non-windows systems you will need to have all necessary prerequisites installed (primarily cmake and qt 4.8.x). See the [Installation Guide](http://cosmosrb.com/docs/installation/) for detailed instructions.
69
69
 
70
70
  2. At the command prompt, create a new COSMOS project:
71
71
 
@@ -82,7 +82,7 @@ COSMOS is built and maintained by Ryan Melton (ryanatball/ryanmelt) and Jason Th
82
82
 
83
83
  4. Click on the various tools to start experimenting with COSMOS!
84
84
 
85
- 5. Follow the [Documentation](https://github.com/BallAerospace/COSMOS/wiki) to start developing your configuration.
85
+ 5. Follow the [Documentation](http://cosmosrb.com) to start developing your configuration.
86
86
 
87
87
  ## Contributing
88
88
 
@@ -2,7 +2,7 @@
2
2
  "lib/cosmos/ccsds/ccsds_packet.rb" 0xA30EE27E
3
3
  "lib/cosmos/system/target.rb" 0x52287176
4
4
  "lib/cosmos/system/system.rb" 0x46C9FAA0
5
- "lib/cosmos/win32/win32_main.rb" 0x75FB669C
5
+ "lib/cosmos/win32/win32_main.rb" 0xC71EBE12
6
6
  "lib/cosmos/win32/win32.rb" 0xEF748B06
7
7
  "lib/cosmos/win32/excel.rb" 0xB4D4195E
8
8
  "lib/cosmos/conversions/received_time_formatted_conversion.rb" 0xDC6ED414
@@ -18,39 +18,39 @@
18
18
  "lib/cosmos/conversions/polynomial_conversion.rb" 0xF6440F21
19
19
  "lib/cosmos/conversions/received_count_conversion.rb" 0xD61BEB37
20
20
  "lib/cosmos/utilities.rb" 0xBE9CEAF4
21
- "lib/cosmos/top_level.rb" 0x1623E285
21
+ "lib/cosmos/top_level.rb" 0xA70518D6
22
22
  "lib/cosmos/packet_logs/meta_packet_log_writer.rb" 0x860D1FD8
23
- "lib/cosmos/packet_logs/packet_log_writer.rb" 0x7C6FCFEC
23
+ "lib/cosmos/packet_logs/packet_log_writer.rb" 0x75E82380
24
24
  "lib/cosmos/packet_logs/packet_log_writer_pair.rb" 0xB4DCA156
25
25
  "lib/cosmos/packet_logs/ccsds_log_reader.rb" 0x20BEB38D
26
26
  "lib/cosmos/packet_logs/packet_log_reader.rb" 0xA347D992
27
27
  "lib/cosmos/utilities/message_log.rb" 0xB34783DF
28
28
  "lib/cosmos/utilities/crc.rb" 0xCDAFB844
29
- "lib/cosmos/utilities/ruby_lex_utils.rb" 0x5FC7DF77
29
+ "lib/cosmos/utilities/ruby_lex_utils.rb" 0x270B0580
30
30
  "lib/cosmos/utilities/logger.rb" 0xD39FB903
31
31
  "lib/cosmos/utilities/sleeper.rb" 0x650C3CEB
32
32
  "lib/cosmos/utilities/quaternion.rb" 0xCCB7A898
33
33
  "lib/cosmos/utilities/csv.rb" 0x9F794965
34
34
  "lib/cosmos/utilities/low_fragmentation_array.rb" 0x7E797C76
35
35
  "lib/cosmos/utilities/simulated_target.rb" 0x7EE7A3FF
36
- "lib/cosmos/gui/qt.rb" 0x124A05FD
36
+ "lib/cosmos/gui/qt.rb" 0xE384005F
37
37
  "lib/cosmos/gui/dialogs/find_replace_dialog.rb" 0x4627C7A5
38
38
  "lib/cosmos/gui/dialogs/set_tlm_dialog.rb" 0x02A207C9
39
- "lib/cosmos/gui/dialogs/exception_dialog.rb" 0xC06443BE
39
+ "lib/cosmos/gui/dialogs/exception_dialog.rb" 0xEAC9F814
40
40
  "lib/cosmos/gui/dialogs/tlm_edit_dialog.rb" 0xCD877DDA
41
- "lib/cosmos/gui/dialogs/splash.rb" 0x82A89062
42
- "lib/cosmos/gui/dialogs/about_dialog.rb" 0x2222837B
41
+ "lib/cosmos/gui/dialogs/splash.rb" 0xC472CE14
42
+ "lib/cosmos/gui/dialogs/about_dialog.rb" 0xB771301D
43
43
  "lib/cosmos/gui/dialogs/cmd_details_dialog.rb" 0x58C4A059
44
44
  "lib/cosmos/gui/dialogs/scroll_text_dialog.rb" 0x7C21F1DA
45
45
  "lib/cosmos/gui/dialogs/details_dialog.rb" 0x6E5FC2DE
46
- "lib/cosmos/gui/dialogs/progress_dialog.rb" 0x43377858
46
+ "lib/cosmos/gui/dialogs/progress_dialog.rb" 0xDD8AB45C
47
47
  "lib/cosmos/gui/dialogs/cmd_tlm_raw_dialog.rb" 0x651F3B7A
48
48
  "lib/cosmos/gui/dialogs/packet_log_dialog.rb" 0x864CC3C0
49
49
  "lib/cosmos/gui/dialogs/legal_dialog.rb" 0x3FDCD1B0
50
50
  "lib/cosmos/gui/dialogs/pry_dialog.rb" 0xA9E57481
51
51
  "lib/cosmos/gui/dialogs/select_dialog.rb" 0xDBD24F83
52
52
  "lib/cosmos/gui/dialogs/exception_list_dialog.rb" 0x304EE4DC
53
- "lib/cosmos/gui/dialogs/tlm_details_dialog.rb" 0xCAD1848F
53
+ "lib/cosmos/gui/dialogs/tlm_details_dialog.rb" 0x18B1DB71
54
54
  "lib/cosmos/gui/dialogs/calendar_dialog.rb" 0x688D3D3B
55
55
  "lib/cosmos/gui/qt_tool.rb" 0x840EF801
56
56
  "lib/cosmos/gui/utilities/script_module_gui.rb" 0x0FFA7712
@@ -60,7 +60,7 @@
60
60
  "lib/cosmos/gui/widgets/packet_log_frame.rb" 0xF9312CBD
61
61
  "lib/cosmos/gui/line_graph/line_graph.rb" 0x6761DE9A
62
62
  "lib/cosmos/gui/line_graph/line_graph_popups.rb" 0x6B6BD351
63
- "lib/cosmos/gui/line_graph/line_graph_drawing.rb" 0x42C08FB0
63
+ "lib/cosmos/gui/line_graph/line_graph_drawing.rb" 0xA68F7552
64
64
  "lib/cosmos/gui/line_graph/overview_graph.rb" 0xEDD6D64A
65
65
  "lib/cosmos/gui/line_graph/line_graph_dialog.rb" 0xF73F68CB
66
66
  "lib/cosmos/gui/line_graph/lines.rb" 0x871CA030
@@ -86,25 +86,25 @@
86
86
  "lib/cosmos/gui/choosers/integer_chooser.rb" 0xCC73344D
87
87
  "lib/cosmos/gui/choosers/string_chooser.rb" 0x0A60837D
88
88
  "lib/cosmos/gui/choosers/file_chooser.rb" 0x575A4333
89
- "lib/cosmos/gui/choosers/telemetry_chooser.rb" 0xEF8C0A7A
89
+ "lib/cosmos/gui/choosers/telemetry_chooser.rb" 0x5E7D492D
90
90
  "lib/cosmos/gui/choosers/combobox_chooser.rb" 0xAD5383D5
91
91
  "lib/cosmos/gui/choosers/float_chooser.rb" 0x23B2FA77
92
92
  "lib/cosmos/tools/script_runner/script_runner_config.rb" 0x1E46E8AA
93
- "lib/cosmos/tools/script_runner/script_runner_frame.rb" 0xEF604AAE
94
- "lib/cosmos/tools/script_runner/script_runner.rb" 0x61FFB8A2
95
- "lib/cosmos/tools/script_runner/script_audit.rb" 0xC4543FBA
93
+ "lib/cosmos/tools/script_runner/script_runner_frame.rb" 0xB999FC77
94
+ "lib/cosmos/tools/script_runner/script_runner.rb" 0x88EEB809
95
+ "lib/cosmos/tools/script_runner/script_audit.rb" 0xB857FA4A
96
96
  "lib/cosmos/tools/cmd_extractor/cmd_extractor.rb" 0xEECB31B8
97
- "lib/cosmos/tools/data_viewer/data_viewer_component.rb" 0x18FE3C76
97
+ "lib/cosmos/tools/data_viewer/data_viewer_component.rb" 0xBF0DAC9B
98
98
  "lib/cosmos/tools/data_viewer/dump_component.rb" 0x6942C5D6
99
- "lib/cosmos/tools/data_viewer/data_viewer.rb" 0x0F59420B
99
+ "lib/cosmos/tools/data_viewer/data_viewer.rb" 0x0C25B817
100
100
  "lib/cosmos/tools/launcher/launcher_multitool.rb" 0x1020A3D0
101
101
  "lib/cosmos/tools/launcher/launcher_tool.rb" 0x0501F2F4
102
102
  "lib/cosmos/tools/launcher/launcher_config.rb" 0x37573A87
103
103
  "lib/cosmos/tools/launcher/launcher.rb" 0x0FFB42EC
104
104
  "lib/cosmos/tools/replay/replay_server.rb" 0x307A7329
105
- "lib/cosmos/tools/replay/replay.rb" 0xB8521242
106
- "lib/cosmos/tools/tlm_extractor/tlm_extractor_processor.rb" 0x2FEE1C86
107
- "lib/cosmos/tools/tlm_extractor/tlm_extractor.rb" 0xC6B38C94
105
+ "lib/cosmos/tools/replay/replay.rb" 0xE9D02C47
106
+ "lib/cosmos/tools/tlm_extractor/tlm_extractor_processor.rb" 0x2AA9C2F5
107
+ "lib/cosmos/tools/tlm_extractor/tlm_extractor.rb" 0x4CC8203A
108
108
  "lib/cosmos/tools/tlm_extractor/tlm_extractor_config.rb" 0x7779DCEC
109
109
  "lib/cosmos/tools/tlm_extractor/text_item_chooser.rb" 0x587768C6
110
110
  "lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server_config.rb" 0xA1C38662
@@ -115,31 +115,31 @@
115
115
  "lib/cosmos/tools/cmd_tlm_server/router_thread.rb" 0x5070D428
116
116
  "lib/cosmos/tools/cmd_tlm_server/background_tasks.rb" 0xAE192026
117
117
  "lib/cosmos/tools/cmd_tlm_server/gui/targets_tab.rb" 0xC1D7D2BF
118
- "lib/cosmos/tools/cmd_tlm_server/gui/status_tab.rb" 0xFE9543B4
119
- "lib/cosmos/tools/cmd_tlm_server/gui/interfaces_tab.rb" 0xD1671DC4
118
+ "lib/cosmos/tools/cmd_tlm_server/gui/status_tab.rb" 0x9136F03E
119
+ "lib/cosmos/tools/cmd_tlm_server/gui/interfaces_tab.rb" 0x305FBD73
120
120
  "lib/cosmos/tools/cmd_tlm_server/gui/logging_tab.rb" 0xFF291A22
121
- "lib/cosmos/tools/cmd_tlm_server/gui/packets_tab.rb" 0xD5554174
121
+ "lib/cosmos/tools/cmd_tlm_server/gui/packets_tab.rb" 0xD8916AE8
122
122
  "lib/cosmos/tools/cmd_tlm_server/routers.rb" 0xF8C93062
123
123
  "lib/cosmos/tools/cmd_tlm_server/packet_logging.rb" 0x166BE402
124
124
  "lib/cosmos/tools/cmd_tlm_server/commanding.rb" 0xC7C76CD8
125
125
  "lib/cosmos/tools/cmd_tlm_server/interfaces.rb" 0x10BC320E
126
126
  "lib/cosmos/tools/cmd_tlm_server/interface_thread.rb" 0x5144683A
127
- "lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server_gui.rb" 0x0542EE44
128
- "lib/cosmos/tools/limits_monitor/limits_monitor.rb" 0xF155D8CC
127
+ "lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server_gui.rb" 0x6C738F54
128
+ "lib/cosmos/tools/limits_monitor/limits_monitor.rb" 0xD33984F4
129
129
  "lib/cosmos/tools/packet_viewer/packet_viewer.rb" 0x12D1B643
130
130
  "lib/cosmos/tools/table_manager/table_manager.rb" 0x4FC4AE95
131
131
  "lib/cosmos/tools/table_manager/table.rb" 0x923A8589
132
132
  "lib/cosmos/tools/table_manager/table_item.rb" 0x08A9A262
133
133
  "lib/cosmos/tools/table_manager/table_manager_core.rb" 0xE5C42A6A
134
- "lib/cosmos/tools/table_manager/table_config.rb" 0x177F0B14
134
+ "lib/cosmos/tools/table_manager/table_config.rb" 0x94E3D8AF
135
135
  "lib/cosmos/tools/opengl_builder/scene_config.rb" 0x15B59793
136
136
  "lib/cosmos/tools/opengl_builder/opengl_builder.rb" 0xB161B0F9
137
- "lib/cosmos/tools/cmd_sender/cmd_sender.rb" 0xDA26A1FB
137
+ "lib/cosmos/tools/cmd_sender/cmd_sender.rb" 0xCE30B8BE
138
138
  "lib/cosmos/tools/cmd_sender/cmd_sender_item_delegate.rb" 0x8297CC9D
139
139
  "lib/cosmos/tools/cmd_sender/cmd_sender_text_edit.rb" 0xB192AF6E
140
140
  "lib/cosmos/tools/test_runner/test_runner_chooser.rb" 0x182F00C6
141
- "lib/cosmos/tools/test_runner/results_writer.rb" 0xF8CF9306
142
- "lib/cosmos/tools/test_runner/test_runner.rb" 0x19B1D251
141
+ "lib/cosmos/tools/test_runner/results_writer.rb" 0x25101A48
142
+ "lib/cosmos/tools/test_runner/test_runner.rb" 0x22470AF1
143
143
  "lib/cosmos/tools/test_runner/test.rb" 0xD2BE7F1C
144
144
  "lib/cosmos/tools/tlm_grapher/plots/xy_plot.rb" 0x98F7712F
145
145
  "lib/cosmos/tools/tlm_grapher/plots/singlexy_plot.rb" 0xA01649EC
@@ -147,9 +147,9 @@
147
147
  "lib/cosmos/tools/tlm_grapher/plots/plot.rb" 0xAD4F05B5
148
148
  "lib/cosmos/tools/tlm_grapher/data_object_editors/linegraph_data_object_editor.rb" 0xC23AA3F6
149
149
  "lib/cosmos/tools/tlm_grapher/data_object_editors/data_object_editor.rb" 0x6A92FD7C
150
- "lib/cosmos/tools/tlm_grapher/data_object_editors/housekeeping_data_object_editor.rb" 0x6E148EFE
150
+ "lib/cosmos/tools/tlm_grapher/data_object_editors/housekeeping_data_object_editor.rb" 0x13B5B6FA
151
151
  "lib/cosmos/tools/tlm_grapher/data_object_editors/singlexy_data_object_editor.rb" 0xB39257A1
152
- "lib/cosmos/tools/tlm_grapher/data_object_editors/xy_data_object_editor.rb" 0xB0D0761F
152
+ "lib/cosmos/tools/tlm_grapher/data_object_editors/xy_data_object_editor.rb" 0x4861E6B6
153
153
  "lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_logfile_thread.rb" 0xA4165EDA
154
154
  "lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_tool.rb" 0x4F1158B4
155
155
  "lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_data_object_editor.rb" 0xF016E145
@@ -158,14 +158,14 @@
158
158
  "lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_tab.rb" 0xD0AC7888
159
159
  "lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_config.rb" 0x08E6FA35
160
160
  "lib/cosmos/tools/tlm_grapher/tlm_grapher.rb" 0xBBFC2272
161
- "lib/cosmos/tools/tlm_grapher/tabbed_plots/overview_tabbed_plots.rb" 0x2B831DC2
161
+ "lib/cosmos/tools/tlm_grapher/tabbed_plots/overview_tabbed_plots.rb" 0x3D4DB4F2
162
162
  "lib/cosmos/tools/tlm_grapher/plot_editors/plot_editor.rb" 0x0C92BBB8
163
163
  "lib/cosmos/tools/tlm_grapher/plot_editors/xy_plot_editor.rb" 0x724D9469
164
164
  "lib/cosmos/tools/tlm_grapher/plot_editors/singlexy_plot_editor.rb" 0xA9B7CD4C
165
165
  "lib/cosmos/tools/tlm_grapher/plot_editors/linegraph_plot_editor.rb" 0x2DEFBC72
166
166
  "lib/cosmos/tools/tlm_grapher/data_object_adders/housekeeping_data_object_adder.rb" 0xDC2B0DD3
167
167
  "lib/cosmos/tools/tlm_grapher/data_object_adders/singlexy_data_object_adder.rb" 0x74CEA56E
168
- "lib/cosmos/tools/tlm_grapher/data_object_adders/xy_data_object_adder.rb" 0x097D8608
168
+ "lib/cosmos/tools/tlm_grapher/data_object_adders/xy_data_object_adder.rb" 0x552F8C1F
169
169
  "lib/cosmos/tools/tlm_grapher/plot_gui_objects/singlexy_plot_gui_object.rb" 0x4FC1C15C
170
170
  "lib/cosmos/tools/tlm_grapher/plot_gui_objects/linegraph_plot_gui_object.rb" 0xC1B25F76
171
171
  "lib/cosmos/tools/tlm_grapher/plot_gui_objects/xy_plot_gui_object.rb" 0xA500650F
@@ -174,8 +174,8 @@
174
174
  "lib/cosmos/tools/tlm_grapher/data_objects/housekeeping_data_object.rb" 0x0485208B
175
175
  "lib/cosmos/tools/tlm_grapher/data_objects/linegraph_data_object.rb" 0x58D45CBE
176
176
  "lib/cosmos/tools/tlm_grapher/data_objects/data_object.rb" 0xE3D40CD6
177
- "lib/cosmos/tools/handbook_creator/handbook_creator_config.rb" 0x689D876A
178
- "lib/cosmos/tools/handbook_creator/handbook_creator.rb" 0x06AD12D2
177
+ "lib/cosmos/tools/handbook_creator/handbook_creator_config.rb" 0x11198CC9
178
+ "lib/cosmos/tools/handbook_creator/handbook_creator.rb" 0x263A9DD2
179
179
  "lib/cosmos/tools/tlm_viewer/screen.rb" 0xEBC2A043
180
180
  "lib/cosmos/tools/tlm_viewer/tlm_viewer_config.rb" 0xD1C9093A
181
181
  "lib/cosmos/tools/tlm_viewer/widgets.rb" 0x6D47EAF0
@@ -231,43 +231,43 @@
231
231
  "lib/cosmos/tools/tlm_viewer/widgets/canvaslinevalue_widget.rb" 0x69740A8B
232
232
  "lib/cosmos/tools/tlm_viewer/widgets/button_widget.rb" 0x189ED964
233
233
  "lib/cosmos/tools/tlm_viewer/widgets/block_widget.rb" 0x03D30FA7
234
- "lib/cosmos/tools/tlm_viewer/tlm_viewer.rb" 0x03D59CCB
234
+ "lib/cosmos/tools/tlm_viewer/tlm_viewer.rb" 0x1D2090F6
235
235
  "lib/cosmos/system.rb" 0x735DFB42
236
236
  "lib/cosmos/conversions.rb" 0x43679D05
237
- "lib/cosmos/version.rb" 0x50C04271
237
+ "lib/cosmos/version.rb" 0x9A690732
238
238
  "lib/cosmos/core_ext.rb" 0x1951B346
239
239
  "lib/cosmos/interfaces.rb" 0x7E3EA326
240
240
  "lib/cosmos/processors.rb" 0x5241327D
241
241
  "lib/cosmos/streams/burst_stream_protocol.rb" 0xA9F43F1C
242
242
  "lib/cosmos/streams/length_stream_protocol.rb" 0x400CD6F2
243
- "lib/cosmos/streams/template_stream_protocol.rb" 0x6E466274
243
+ "lib/cosmos/streams/template_stream_protocol.rb" 0x5CCD5933
244
244
  "lib/cosmos/streams/terminated_stream_protocol.rb" 0x5DBDE591
245
245
  "lib/cosmos/streams/stream.rb" 0xFD0A41B9
246
246
  "lib/cosmos/streams/serial_stream.rb" 0x9F0BBA1D
247
247
  "lib/cosmos/streams/stream_protocol.rb" 0x5EA23890
248
248
  "lib/cosmos/streams/fixed_stream_protocol.rb" 0x5F6F224B
249
249
  "lib/cosmos/streams/tcpip_client_stream.rb" 0xA644ADBA
250
- "lib/cosmos/streams/tcpip_socket_stream.rb" 0xA6A94616
250
+ "lib/cosmos/streams/tcpip_socket_stream.rb" 0xC66F984E
251
251
  "lib/cosmos/streams/preidentified_stream_protocol.rb" 0xC258238E
252
252
  "lib/cosmos/script.rb" 0x25BB611B
253
253
  "lib/cosmos/config/config_parser.rb" 0x89526FF1
254
254
  "lib/cosmos/packet_logs.rb" 0xA2EDBB00
255
- "lib/cosmos/packets/limits.rb" 0x66FCFD29
255
+ "lib/cosmos/packets/limits.rb" 0xB4086E81
256
256
  "lib/cosmos/packets/limits_response.rb" 0x9C5E8444
257
- "lib/cosmos/packets/commands.rb" 0x0025C398
258
- "lib/cosmos/packets/structure.rb" 0x39FE3731
259
- "lib/cosmos/packets/telemetry.rb" 0xF43901DF
257
+ "lib/cosmos/packets/commands.rb" 0x1A33428E
258
+ "lib/cosmos/packets/structure.rb" 0xC8524C43
259
+ "lib/cosmos/packets/telemetry.rb" 0x5A769DE7
260
260
  "lib/cosmos/packets/parsers/format_string_parser.rb" 0x8015C5E3
261
261
  "lib/cosmos/packets/parsers/packet_parser.rb" 0xEA0AF2C6
262
262
  "lib/cosmos/packets/parsers/packet_item_parser.rb" 0x8DB06663
263
263
  "lib/cosmos/packets/parsers/processor_parser.rb" 0xEC75BA88
264
- "lib/cosmos/packets/parsers/limits_parser.rb" 0xB9747994
265
- "lib/cosmos/packets/parsers/state_parser.rb" 0xDD331AA5
266
- "lib/cosmos/packets/parsers/macro_parser.rb" 0x767AD192
264
+ "lib/cosmos/packets/parsers/limits_parser.rb" 0xFCFB27D0
265
+ "lib/cosmos/packets/parsers/state_parser.rb" 0xCA3BFDFC
266
+ "lib/cosmos/packets/parsers/macro_parser.rb" 0x8454D5AE
267
267
  "lib/cosmos/packets/parsers/limits_response_parser.rb" 0x05979119
268
268
  "lib/cosmos/packets/packet_config.rb" 0xFDD8F251
269
269
  "lib/cosmos/packets/binary_accessor.rb" 0xF913F2EA
270
- "lib/cosmos/packets/packet.rb" 0xF6D1CB14
270
+ "lib/cosmos/packets/packet.rb" 0x39B6C0C4
271
271
  "lib/cosmos/packets/structure_item.rb" 0xBDC81085
272
272
  "lib/cosmos/packets/packet_item_limits.rb" 0xE187C389
273
273
  "lib/cosmos/packets/packet_item.rb" 0x2A07D5B4
@@ -279,14 +279,14 @@
279
279
  "lib/cosmos/io/buffered_file.rb" 0x70A3B880
280
280
  "lib/cosmos/io/json_drb_object.rb" 0x58BE861D
281
281
  "lib/cosmos/io/cosmos_snmp.rb" 0x64541158
282
- "lib/cosmos/io/json_rpc.rb" 0x8EAA13F8
282
+ "lib/cosmos/io/json_rpc.rb" 0xAF9D95D5
283
283
  "lib/cosmos/io/tcpip_server.rb" 0xBAA24660
284
284
  "lib/cosmos/io/posix_serial_driver.rb" 0x6DD5B8B4
285
285
  "lib/cosmos/io/udp_sockets.rb" 0xB1B138CD
286
286
  "lib/cosmos/io/serial_driver.rb" 0x9A2515F4
287
287
  "lib/cosmos/io/raw_logger_pair.rb" 0x7A0A3F00
288
288
  "lib/cosmos/io/raw_logger.rb" 0x42BC42CC
289
- "lib/cosmos/io/json_drb.rb" 0x00FC5705
289
+ "lib/cosmos/io/json_drb.rb" 0x53EC6DBC
290
290
  "lib/cosmos/io/stderr.rb" 0x401624AF
291
291
  "lib/cosmos/io/io_multiplexer.rb" 0xD183938D
292
292
  "lib/cosmos/io/win32_serial_driver.rb" 0xA7E055CA
@@ -299,7 +299,7 @@
299
299
  "lib/cosmos/interfaces/tcpip_client_interface.rb" 0x5F0DB50D
300
300
  "lib/cosmos/interfaces/udp_interface.rb" 0xCE4532AD
301
301
  "lib/cosmos/interfaces/tcpip_server_interface.rb" 0xC8F6E908
302
- "lib/cosmos/script/script.rb" 0x2F64B04D
302
+ "lib/cosmos/script/script.rb" 0x06BF2D5F
303
303
  "lib/cosmos/script/extract.rb" 0xF3243476
304
304
  "lib/cosmos/core_ext/range.rb" 0x0D55D9D1
305
305
  "lib/cosmos/core_ext/stringio.rb" 0x28B64FB4
@@ -310,11 +310,11 @@
310
310
  "lib/cosmos/core_ext/class.rb" 0x858C349B
311
311
  "lib/cosmos/core_ext/objectspace.rb" 0x2CDC9CA2
312
312
  "lib/cosmos/core_ext/math.rb" 0xEFD1636D
313
- "lib/cosmos/core_ext/time.rb" 0x6802F4F5
313
+ "lib/cosmos/core_ext/time.rb" 0xD91CA530
314
314
  "lib/cosmos/core_ext/io.rb" 0x8FCCD389
315
315
  "lib/cosmos/core_ext/kernel.rb" 0xF6437996
316
316
  "lib/cosmos/core_ext/exception.rb" 0x695F7020
317
317
  "lib/cosmos/core_ext/string.rb" 0x2079C392
318
318
  "lib/cosmos/core_ext/hash.rb" 0x99038BE1
319
319
  "lib/cosmos/core_ext/matrix.rb" 0xC7ABFF88
320
- "lib/cosmos.rb" 0xE8930592
320
+ "lib/cosmos.rb" 0x116E7B3E