cosmos 4.1.1 → 4.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (336) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -2
  3. data/.travis.yml +2 -0
  4. data/.yardopts +1 -0
  5. data/Gemfile +1 -0
  6. data/Manifest.txt +130 -0
  7. data/autohotkey/tools/ConfigEditorAHK +19 -0
  8. data/autohotkey/tools/cmd_extractor.ahk +4 -4
  9. data/autohotkey/tools/cmd_sequence.ahk +9 -5
  10. data/autohotkey/tools/config_editor.ahk +197 -0
  11. data/autohotkey/tools/packet_viewer.ahk +12 -6
  12. data/autohotkey/tools/replay.ahk +29 -29
  13. data/autohotkey/tools/script_runner.ahk +10 -2
  14. data/autohotkey/tools/tlm_extractor.ahk +7 -8
  15. data/autohotkey/tools/tlm_grapher.ahk +21 -9
  16. data/bin/dart_import +2 -0
  17. data/cosmos.gemspec +18 -16
  18. data/data/config/cmd_tlm_server.yaml +9 -0
  19. data/data/config/interface_modifiers.yaml +17 -0
  20. data/data/config/item_modifiers.yaml +3 -3
  21. data/data/crc.txt +184 -90
  22. data/data/dart.png +0 -0
  23. data/demo/Gemfile +1 -0
  24. data/demo/Rakefile +4 -0
  25. data/demo/config/dart/Gemfile +54 -0
  26. data/demo/config/data/crc.txt +28 -21
  27. data/demo/config/system/system.txt +3 -0
  28. data/demo/config/system/system2.txt +3 -0
  29. data/demo/config/targets/INST/cmd_tlm/inst_cmds.txt +3 -3
  30. data/demo/config/targets/INST/cmd_tlm/inst_tlm.txt +1 -1
  31. data/demo/config/targets/INST/lib/sim_inst.rb +1 -1
  32. data/demo/config/targets/INST/screens/adcs.txt +2 -1
  33. data/demo/config/targets/INST/screens/array.txt +1 -1
  34. data/demo/config/targets/INST/screens/block.txt +1 -1
  35. data/demo/config/targets/INST/screens/commanding.txt +7 -2
  36. data/demo/config/targets/INST/screens/graphs.txt +1 -1
  37. data/demo/config/targets/INST/screens/ground.txt +1 -1
  38. data/demo/config/targets/INST/screens/hs.txt +2 -1
  39. data/demo/config/targets/INST/screens/latest.txt +1 -1
  40. data/demo/config/targets/INST/screens/limits.txt +1 -1
  41. data/demo/config/targets/INST/screens/other.txt +1 -1
  42. data/demo/config/targets/INST/screens/tabs.txt +1 -1
  43. data/demo/config/tools/cmd_tlm_server/cmd_tlm_server.txt +2 -2
  44. data/demo/config/tools/cmd_tlm_server/cmd_tlm_server2.txt +3 -1
  45. data/demo/config/tools/launcher/launcher.txt +3 -2
  46. data/demo/tools/Dart +16 -0
  47. data/demo/tools/Dart.bat +9 -0
  48. data/demo/tools/mac/CmdSequence.app/Contents/MacOS/main.sh +0 -0
  49. data/demo/tools/mac/ConfigEditor.app/Contents/MacOS/main.sh +0 -0
  50. data/install/Gemfile +1 -0
  51. data/install/Rakefile +4 -0
  52. data/install/config/dart/Gemfile +54 -0
  53. data/install/config/data/crc.txt +6 -3
  54. data/install/config/system/system.txt +3 -0
  55. data/install/config/tools/launcher/launcher.txt +3 -2
  56. data/install/tools/Dart +16 -0
  57. data/install/tools/Dart.bat +9 -0
  58. data/install/tools/mac/CmdSequence.app/Contents/MacOS/main.sh +0 -0
  59. data/install/tools/mac/ConfigEditor.app/Contents/MacOS/main.sh +0 -0
  60. data/lib/cosmos/core_ext/time.rb +8 -8
  61. data/lib/cosmos/dart/.rspec +1 -0
  62. data/lib/cosmos/dart/Gemfile +69 -0
  63. data/lib/cosmos/dart/Rakefile +7 -0
  64. data/lib/cosmos/dart/app/assets/config/manifest.js +4 -0
  65. data/lib/cosmos/dart/app/assets/images/.keep +0 -0
  66. data/lib/cosmos/dart/app/assets/javascripts/application.js +13 -0
  67. data/lib/cosmos/dart/app/assets/javascripts/cable.js +13 -0
  68. data/lib/cosmos/dart/app/assets/stylesheets/application.css.scss +15 -0
  69. data/lib/cosmos/dart/app/channels/application_cable/channel.rb +4 -0
  70. data/lib/cosmos/dart/app/channels/application_cable/connection.rb +4 -0
  71. data/lib/cosmos/dart/app/controllers/application_controller.rb +3 -0
  72. data/lib/cosmos/dart/app/helpers/application_helper.rb +2 -0
  73. data/lib/cosmos/dart/app/jobs/application_job.rb +2 -0
  74. data/lib/cosmos/dart/app/mailers/application_mailer.rb +4 -0
  75. data/lib/cosmos/dart/app/models/application_record.rb +3 -0
  76. data/lib/cosmos/dart/app/models/item.rb +6 -0
  77. data/lib/cosmos/dart/app/models/item_to_decom_table_mapping.rb +9 -0
  78. data/lib/cosmos/dart/app/models/packet.rb +4 -0
  79. data/lib/cosmos/dart/app/models/packet_config.rb +7 -0
  80. data/lib/cosmos/dart/app/models/packet_log.rb +3 -0
  81. data/lib/cosmos/dart/app/models/packet_log_entry.rb +41 -0
  82. data/lib/cosmos/dart/app/models/system_config.rb +2 -0
  83. data/lib/cosmos/dart/app/models/target.rb +4 -0
  84. data/lib/cosmos/dart/app/views/layouts/application.html.erb +14 -0
  85. data/lib/cosmos/dart/app/views/layouts/mailer.html.erb +13 -0
  86. data/lib/cosmos/dart/app/views/layouts/mailer.text.erb +1 -0
  87. data/lib/cosmos/dart/bin/bundle +3 -0
  88. data/lib/cosmos/dart/bin/rails +4 -0
  89. data/lib/cosmos/dart/bin/rake +4 -0
  90. data/lib/cosmos/dart/bin/setup +34 -0
  91. data/lib/cosmos/dart/bin/update +29 -0
  92. data/lib/cosmos/dart/config.ru +5 -0
  93. data/lib/cosmos/dart/config/application.rb +29 -0
  94. data/lib/cosmos/dart/config/boot.rb +3 -0
  95. data/lib/cosmos/dart/config/cable.yml +9 -0
  96. data/lib/cosmos/dart/config/database.yml +23 -0
  97. data/lib/cosmos/dart/config/environment.rb +5 -0
  98. data/lib/cosmos/dart/config/environments/development.rb +62 -0
  99. data/lib/cosmos/dart/config/environments/production.rb +84 -0
  100. data/lib/cosmos/dart/config/environments/test.rb +42 -0
  101. data/lib/cosmos/dart/config/initializers/application_controller_renderer.rb +6 -0
  102. data/lib/cosmos/dart/config/initializers/assets.rb +12 -0
  103. data/lib/cosmos/dart/config/initializers/backtrace_silencers.rb +7 -0
  104. data/lib/cosmos/dart/config/initializers/cookies_serializer.rb +5 -0
  105. data/lib/cosmos/dart/config/initializers/filter_parameter_logging.rb +4 -0
  106. data/lib/cosmos/dart/config/initializers/inflections.rb +16 -0
  107. data/lib/cosmos/dart/config/initializers/mime_types.rb +4 -0
  108. data/lib/cosmos/dart/config/initializers/new_framework_defaults.rb +25 -0
  109. data/lib/cosmos/dart/config/initializers/session_store.rb +3 -0
  110. data/lib/cosmos/dart/config/initializers/wrap_parameters.rb +14 -0
  111. data/lib/cosmos/dart/config/locales/en.yml +23 -0
  112. data/lib/cosmos/dart/config/puma.rb +47 -0
  113. data/lib/cosmos/dart/config/routes.rb +3 -0
  114. data/lib/cosmos/dart/config/secrets.yml +22 -0
  115. data/lib/cosmos/dart/db/migrate/20170406172907_create_targets.rb +8 -0
  116. data/lib/cosmos/dart/db/migrate/20170406172927_create_packets.rb +10 -0
  117. data/lib/cosmos/dart/db/migrate/20170406172937_create_packet_logs.rb +9 -0
  118. data/lib/cosmos/dart/db/migrate/20170406172943_create_packet_log_entries.rb +16 -0
  119. data/lib/cosmos/dart/db/migrate/20170406183500_change_packet_log_entries_primary_key.rb +5 -0
  120. data/lib/cosmos/dart/db/migrate/20170407153618_add_unique_requirements.rb +7 -0
  121. data/lib/cosmos/dart/db/migrate/20170511155447_add_meta_id_to_packet_log_entries.rb +6 -0
  122. data/lib/cosmos/dart/db/migrate/20170523185056_rename_received_time_and_add_is_tlm_to_packet_log_entries.rb +7 -0
  123. data/lib/cosmos/dart/db/migrate/20170525201157_create_items.rb +10 -0
  124. data/lib/cosmos/dart/db/migrate/20170525201315_create_system_configs.rb +9 -0
  125. data/lib/cosmos/dart/db/migrate/20170525201624_create_packet_configs.rb +11 -0
  126. data/lib/cosmos/dart/db/migrate/20170525201745_create_item_to_decom_table_mappings.rb +12 -0
  127. data/lib/cosmos/dart/db/migrate/20170525201939_create_decom_tables.rb +12 -0
  128. data/lib/cosmos/dart/db/migrate/20170525202051_add_decom_state_to_packet_log_entry.rb +5 -0
  129. data/lib/cosmos/dart/db/migrate/20170913160409_update_items.rb +6 -0
  130. data/lib/cosmos/dart/db/migrate/20170913160558_update_item_to_decom_table_mapping.rb +11 -0
  131. data/lib/cosmos/dart/db/migrate/20170913160916_udpate_decom_table.rb +6 -0
  132. data/lib/cosmos/dart/db/migrate/20170913212026_add_ready_to_packet_configs.rb +5 -0
  133. data/lib/cosmos/dart/db/migrate/20170913223556_modify_tables.rb +9 -0
  134. data/lib/cosmos/dart/db/migrate/20170914215744_modify_mapping_table.rb +6 -0
  135. data/lib/cosmos/dart/db/migrate/20170919201433_add_system_config_id_to_packet_config.rb +11 -0
  136. data/lib/cosmos/dart/db/migrate/20170919210307_add_max_table_index_to_packet_configs.rb +5 -0
  137. data/lib/cosmos/dart/db/migrate/20171215225546_add_ready_to_packet_log_entries.rb +5 -0
  138. data/lib/cosmos/dart/db/migrate/20180116214338_add_index_for_ple_ready_to_packet_log_entries.rb +5 -0
  139. data/lib/cosmos/dart/db/schema.rb +103 -0
  140. data/lib/cosmos/dart/db/seeds.rb +7 -0
  141. data/lib/cosmos/dart/examples/dart_decom_client.rb +45 -0
  142. data/lib/cosmos/dart/examples/dart_stream_client.rb +93 -0
  143. data/lib/cosmos/dart/lib/dart_common.rb +749 -0
  144. data/lib/cosmos/dart/lib/dart_database_cleaner.rb +172 -0
  145. data/lib/cosmos/dart/lib/dart_decom_query.rb +184 -0
  146. data/lib/cosmos/dart/lib/dart_decommutator.rb +235 -0
  147. data/lib/cosmos/dart/lib/dart_importer.rb +154 -0
  148. data/lib/cosmos/dart/lib/dart_logging.rb +50 -0
  149. data/lib/cosmos/dart/lib/dart_packet_log_writer.rb +139 -0
  150. data/lib/cosmos/dart/lib/dart_reducer_manager.rb +85 -0
  151. data/lib/cosmos/dart/lib/dart_reducer_worker_thread.rb +263 -0
  152. data/lib/cosmos/dart/lib/dart_tcpip_server_interface.rb +142 -0
  153. data/lib/cosmos/dart/processes/dart.rb +145 -0
  154. data/lib/cosmos/dart/processes/dart_decom_server.rb +39 -0
  155. data/lib/cosmos/dart/processes/dart_import.rb +63 -0
  156. data/lib/cosmos/dart/processes/dart_ingester.rb +92 -0
  157. data/lib/cosmos/dart/processes/dart_reducer.rb +27 -0
  158. data/lib/cosmos/dart/processes/dart_stream_server.rb +31 -0
  159. data/lib/cosmos/dart/processes/dart_worker.rb +37 -0
  160. data/lib/cosmos/dart/spec/dart/dart_common_spec.rb +333 -0
  161. data/lib/cosmos/dart/spec/dart/dart_database_cleaner_spec.rb +455 -0
  162. data/lib/cosmos/dart/spec/dart/dart_decom_query_spec.rb +153 -0
  163. data/lib/cosmos/dart/spec/dart/dart_decommutator_spec.rb +336 -0
  164. data/lib/cosmos/dart/spec/dart/dart_importer_spec.rb +83 -0
  165. data/lib/cosmos/dart/spec/dart/dart_logging_spec.rb +30 -0
  166. data/lib/cosmos/dart/spec/dart/dart_packet_log_writer_spec.rb +149 -0
  167. data/lib/cosmos/dart/spec/dart/dart_reducer_manager_spec.rb +289 -0
  168. data/lib/cosmos/dart/spec/dart/dart_tcpip_server_interface_spec.rb +241 -0
  169. data/lib/cosmos/dart/spec/rails_helper.rb +60 -0
  170. data/lib/cosmos/dart/spec/spec_helper.rb +139 -0
  171. data/lib/cosmos/gui/dialogs/about_dialog.rb +1 -1
  172. data/lib/cosmos/gui/dialogs/dart_dialog.rb +60 -0
  173. data/lib/cosmos/gui/dialogs/legal_dialog.rb +1 -0
  174. data/lib/cosmos/gui/dialogs/scroll_text_dialog.rb +0 -3
  175. data/lib/cosmos/gui/qt.rb +10 -1
  176. data/lib/cosmos/gui/text/completion.rb +10 -9
  177. data/lib/cosmos/gui/text/completion_text_edit.rb +16 -14
  178. data/lib/cosmos/gui/text/ruby_editor.rb +2 -2
  179. data/lib/cosmos/gui/widgets/dart_frame.rb +142 -0
  180. data/lib/cosmos/gui/widgets/dart_meta_frame.rb +119 -0
  181. data/lib/cosmos/gui/widgets/packet_log_frame.rb +42 -12
  182. data/lib/cosmos/interfaces/interface.rb +1 -2
  183. data/lib/cosmos/interfaces/protocols/crc_protocol.rb +26 -8
  184. data/lib/cosmos/interfaces/protocols/fixed_protocol.rb +8 -2
  185. data/lib/cosmos/interfaces/protocols/protocol.rb +2 -1
  186. data/lib/cosmos/interfaces/protocols/template_protocol.rb +1 -1
  187. data/lib/cosmos/interfaces/stream_interface.rb +1 -0
  188. data/lib/cosmos/interfaces/tcpip_server_interface.rb +2 -3
  189. data/lib/cosmos/io/json_drb_object.rb +1 -1
  190. data/lib/cosmos/io/json_rpc.rb +2 -1
  191. data/lib/cosmos/io/win32_serial_driver.rb +2 -9
  192. data/lib/cosmos/packet_logs/packet_log_writer.rb +1 -1
  193. data/lib/cosmos/packets/packet.rb +22 -12
  194. data/lib/cosmos/packets/packet_config.rb +2 -1
  195. data/lib/cosmos/packets/packet_item.rb +26 -24
  196. data/lib/cosmos/packets/parsers/macro_parser.rb +5 -2
  197. data/lib/cosmos/packets/parsers/packet_item_parser.rb +35 -17
  198. data/lib/cosmos/packets/parsers/packet_parser.rb +3 -10
  199. data/lib/cosmos/packets/parsers/xtce_converter.rb +21 -35
  200. data/lib/cosmos/packets/parsers/xtce_parser.rb +54 -46
  201. data/lib/cosmos/packets/structure.rb +10 -2
  202. data/lib/cosmos/packets/structure_item.rb +22 -8
  203. data/lib/cosmos/processors/statistics_processor.rb +2 -0
  204. data/lib/cosmos/script/api_shared.rb +13 -12
  205. data/lib/cosmos/script/cmd_tlm_server.rb +4 -0
  206. data/lib/cosmos/script/commands.rb +3 -15
  207. data/lib/cosmos/script/script.rb +69 -23
  208. data/lib/cosmos/streams/tcpip_client_stream.rb +2 -2
  209. data/lib/cosmos/system/system.rb +42 -25
  210. data/lib/cosmos/system/target.rb +6 -2
  211. data/lib/cosmos/tools/cmd_extractor/cmd_extractor.rb +177 -36
  212. data/lib/cosmos/tools/cmd_sender/cmd_param_table_item_delegate.rb +3 -2
  213. data/lib/cosmos/tools/cmd_sender/cmd_sender.rb +34 -8
  214. data/lib/cosmos/tools/cmd_sequence/cmd_sequence.rb +80 -25
  215. data/lib/cosmos/tools/cmd_tlm_server/api.rb +19 -4
  216. data/lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server.rb +15 -14
  217. data/lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server_gui.rb +15 -9
  218. data/lib/cosmos/tools/cmd_tlm_server/gui/interfaces_tab.rb +1 -9
  219. data/lib/cosmos/tools/cmd_tlm_server/gui/logging_tab.rb +1 -6
  220. data/lib/cosmos/tools/cmd_tlm_server/gui/packets_tab.rb +1 -3
  221. data/lib/cosmos/tools/cmd_tlm_server/gui/replay_tab.rb +84 -7
  222. data/lib/cosmos/tools/cmd_tlm_server/gui/status_tab.rb +0 -1
  223. data/lib/cosmos/tools/cmd_tlm_server/gui/targets_tab.rb +1 -5
  224. data/lib/cosmos/tools/cmd_tlm_server/limits_groups_background_task.rb +3 -2
  225. data/lib/cosmos/tools/cmd_tlm_server/replay_backend.rb +159 -27
  226. data/lib/cosmos/tools/cmd_tlm_server/routers.rb +1 -1
  227. data/lib/cosmos/tools/config_editor/config_editor.rb +17 -52
  228. data/lib/cosmos/tools/config_editor/config_editor_frame.rb +0 -5
  229. data/lib/cosmos/tools/data_viewer/data_viewer.rb +111 -0
  230. data/lib/cosmos/tools/limits_monitor/limits_monitor.rb +31 -18
  231. data/lib/cosmos/tools/packet_viewer/packet_viewer.rb +12 -3
  232. data/lib/cosmos/tools/script_runner/script_runner.rb +27 -14
  233. data/lib/cosmos/tools/script_runner/script_runner_frame.rb +104 -37
  234. data/lib/cosmos/tools/table_manager/table_config.rb +1 -1
  235. data/lib/cosmos/tools/table_manager/table_item_parser.rb +4 -2
  236. data/lib/cosmos/tools/table_manager/table_manager.rb +0 -5
  237. data/lib/cosmos/tools/table_manager/table_manager_core.rb +0 -1
  238. data/lib/cosmos/tools/test_runner/test.rb +1 -3
  239. data/lib/cosmos/tools/test_runner/test_runner.rb +26 -15
  240. data/lib/cosmos/tools/tlm_extractor/tlm_extractor.rb +290 -137
  241. data/lib/cosmos/tools/tlm_extractor/tlm_extractor_config.rb +122 -25
  242. data/lib/cosmos/tools/tlm_extractor/tlm_extractor_processor.rb +67 -0
  243. data/lib/cosmos/tools/tlm_grapher/data_object_editors/housekeeping_data_object_editor.rb +28 -0
  244. data/lib/cosmos/tools/tlm_grapher/data_object_editors/xy_data_object_editor.rb +36 -0
  245. data/lib/cosmos/tools/tlm_grapher/data_objects/data_object.rb +42 -3
  246. data/lib/cosmos/tools/tlm_grapher/data_objects/housekeeping_data_object.rb +88 -14
  247. data/lib/cosmos/tools/tlm_grapher/data_objects/linegraph_data_object.rb +2 -5
  248. data/lib/cosmos/tools/tlm_grapher/data_objects/singlexy_data_object.rb +2 -6
  249. data/lib/cosmos/tools/tlm_grapher/data_objects/xy_data_object.rb +74 -18
  250. data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_config.rb +3 -7
  251. data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_dart_thread.rb +159 -0
  252. data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_tool.rb +49 -2
  253. data/lib/cosmos/tools/tlm_viewer/screen.rb +3 -0
  254. data/lib/cosmos/tools/tlm_viewer/tlm_viewer_config.rb +0 -2
  255. data/lib/cosmos/tools/tlm_viewer/widgets.rb +1 -0
  256. data/lib/cosmos/tools/tlm_viewer/widgets/backgroundbutton_widget.rb +54 -0
  257. data/lib/cosmos/tools/tlm_viewer/widgets/button_widget.rb +5 -5
  258. data/lib/cosmos/top_level.rb +1 -0
  259. data/lib/cosmos/utilities/crc.rb +3 -0
  260. data/lib/cosmos/utilities/csv.rb +1 -0
  261. data/lib/cosmos/utilities/message_log.rb +2 -1
  262. data/lib/cosmos/utilities/simulated_target.rb +8 -8
  263. data/lib/cosmos/version.rb +5 -5
  264. data/lib/cosmos/win32/win32.rb +4 -10
  265. data/run_gui_tests.bat +2 -1
  266. data/spec/config/config_parser_spec.rb +4 -4
  267. data/spec/core_ext/array_spec.rb +1 -1
  268. data/spec/core_ext/exception_spec.rb +12 -12
  269. data/spec/core_ext/file_spec.rb +6 -6
  270. data/spec/core_ext/hash_spec.rb +1 -1
  271. data/spec/core_ext/socket_spec.rb +2 -2
  272. data/spec/core_ext/string_spec.rb +13 -13
  273. data/spec/core_ext/time_spec.rb +0 -2
  274. data/spec/gui/utilities/script_module_gui_spec.rb +3 -3
  275. data/spec/install/config/targets/INST/cmd_tlm/inst_tlm.txt +6 -6
  276. data/spec/install/config/tools/cmd_tlm_server/cmd_tlm_server.txt +4 -0
  277. data/spec/interfaces/cmd_tlm_server_interface_spec.rb +6 -2
  278. data/spec/interfaces/interface_spec.rb +0 -1
  279. data/spec/interfaces/linc_interface_spec.rb +0 -5
  280. data/spec/interfaces/protocols/crc_protocol_spec.rb +201 -85
  281. data/spec/interfaces/protocols/fixed_protocol_spec.rb +33 -9
  282. data/spec/interfaces/protocols/length_protocol_spec.rb +1 -1
  283. data/spec/interfaces/protocols/override_protocol_spec.rb +6 -2
  284. data/spec/interfaces/protocols/preidentified_protocol_spec.rb +1 -5
  285. data/spec/interfaces/protocols/template_protocol_spec.rb +0 -1
  286. data/spec/interfaces/simulated_target_interface_spec.rb +5 -5
  287. data/spec/interfaces/udp_interface_spec.rb +2 -4
  288. data/spec/io/buffered_file_spec.rb +8 -12
  289. data/spec/io/json_drb_spec.rb +9 -9
  290. data/spec/io/json_rpc_spec.rb +4 -4
  291. data/spec/io/raw_logger_spec.rb +4 -3
  292. data/spec/packet_logs/packet_log_reader_spec.rb +3 -6
  293. data/spec/packet_logs/packet_log_writer_spec.rb +4 -4
  294. data/spec/packets/binary_accessor_spec.rb +5 -8
  295. data/spec/packets/commands_spec.rb +2 -2
  296. data/spec/packets/limits_spec.rb +2 -2
  297. data/spec/packets/packet_config_spec.rb +12 -0
  298. data/spec/packets/packet_item_limits_spec.rb +1 -1
  299. data/spec/packets/packet_item_spec.rb +9 -9
  300. data/spec/packets/packet_spec.rb +15 -5
  301. data/spec/packets/parsers/packet_item_parser_spec.rb +27 -0
  302. data/spec/packets/parsers/xtce_parser_spec.rb +27 -30
  303. data/spec/packets/structure_spec.rb +2 -1
  304. data/spec/packets/telemetry_spec.rb +3 -5
  305. data/spec/processors/statistics_processor_spec.rb +35 -0
  306. data/spec/script/cmd_tlm_server_spec.rb +4 -21
  307. data/spec/script/commands_disconnect_spec.rb +46 -58
  308. data/spec/script/commands_spec.rb +40 -61
  309. data/spec/script/limits_spec.rb +1 -21
  310. data/spec/script/script_spec.rb +32 -41
  311. data/spec/script/scripting_spec.rb +166 -185
  312. data/spec/script/telemetry_spec.rb +10 -5
  313. data/spec/script/tools_spec.rb +2 -24
  314. data/spec/spec_helper.rb +11 -5
  315. data/spec/system/system_spec.rb +17 -12
  316. data/spec/tools/cmd_tlm_server/api_spec.rb +21 -10
  317. data/spec/tools/cmd_tlm_server/background_tasks_spec.rb +15 -16
  318. data/spec/tools/cmd_tlm_server/cmd_tlm_server_config_spec.rb +0 -1
  319. data/spec/tools/cmd_tlm_server/cmd_tlm_server_spec.rb +16 -27
  320. data/spec/tools/cmd_tlm_server/commanding_spec.rb +2 -6
  321. data/spec/tools/cmd_tlm_server/connections_spec.rb +0 -4
  322. data/spec/tools/cmd_tlm_server/interface_thread_spec.rb +13 -13
  323. data/spec/tools/cmd_tlm_server/interfaces_spec.rb +5 -9
  324. data/spec/tools/cmd_tlm_server/limits_groups_background_task_spec.rb +11 -3
  325. data/spec/tools/cmd_tlm_server/packet_logging_spec.rb +0 -4
  326. data/spec/tools/cmd_tlm_server/router_thread_spec.rb +5 -5
  327. data/spec/tools/cmd_tlm_server/routers_spec.rb +5 -9
  328. data/spec/tools/table_manager/table_config_spec.rb +0 -1
  329. data/spec/tools/table_manager/tablemanager_core_spec.rb +23 -23
  330. data/spec/tools/tlm_viewer/tlm_viewer_config_spec.rb +6 -4
  331. data/spec/top_level/top_level_spec.rb +9 -9
  332. data/spec/utilities/csv_spec.rb +2 -12
  333. data/spec/utilities/logger_spec.rb +6 -6
  334. data/spec/utilities/message_log_spec.rb +3 -11
  335. data/tasks/gemfile_stats.rake +2 -2
  336. metadata +198 -63
@@ -14,7 +14,6 @@ require 'cosmos/tools/table_manager/table_config'
14
14
  require 'tempfile'
15
15
 
16
16
  module Cosmos
17
-
18
17
  describe TableConfig do
19
18
  let(:tc) { TableConfig.new }
20
19
 
@@ -61,7 +61,7 @@ module Cosmos
61
61
  end
62
62
  bin_filename = core.file_new(def_filename, Dir.pwd)
63
63
  expect(bin_filename).to eq File.join(Dir.pwd, "table.dat")
64
- expect(File.read(bin_filename).formatted).to match /DE AD BE EF 00 00/
64
+ expect(File.read(bin_filename).formatted).to match(/DE AD BE EF 00 00/)
65
65
  FileUtils.rm def_filename
66
66
  FileUtils.rm bin_filename
67
67
  FileUtils.rm 'table.csv'
@@ -96,7 +96,7 @@ module Cosmos
96
96
  file.puts ' APPEND_PARAMETER item1 32 UINT 0 0 0 "Item"'
97
97
  end
98
98
  expect { core.file_open(bin_filename, def_filename) }.to raise_error(/Binary size of 2 not large enough/)
99
- expect(core.config.tables['TABLE1'].buffer.formatted).to match /AB CD 00 00/
99
+ expect(core.config.tables['TABLE1'].buffer.formatted).to match(/AB CD 00 00/)
100
100
  FileUtils.rm bin_filename
101
101
  FileUtils.rm def_filename
102
102
  end
@@ -110,7 +110,7 @@ module Cosmos
110
110
  file.puts ' APPEND_PARAMETER item1 16 UINT 0 0 0 "Item"'
111
111
  end
112
112
  expect { core.file_open(bin_filename, def_filename) }.to raise_error(/Binary size of 3 larger/)
113
- expect(core.config.tables['TABLE1'].buffer.formatted).to match /AB CD/
113
+ expect(core.config.tables['TABLE1'].buffer.formatted).to match(/AB CD/)
114
114
  FileUtils.rm bin_filename
115
115
  FileUtils.rm def_filename
116
116
  end
@@ -146,7 +146,7 @@ module Cosmos
146
146
  core.file_open(bin_filename, def_filename)
147
147
  core.config.tables['TABLE1'].buffer = "\xAB\xCD"
148
148
  core.file_save('save.bin')
149
- expect(File.read('save.bin').formatted).to match /AB CD/
149
+ expect(File.read('save.bin').formatted).to match(/AB CD/)
150
150
  FileUtils.rm bin_filename
151
151
  FileUtils.rm def_filename
152
152
  FileUtils.rm 'save.bin'
@@ -205,8 +205,8 @@ module Cosmos
205
205
  report_filename = core.file_report(bin_filename, def_filename)
206
206
  expect(File.basename(report_filename)).to eql "testfile.csv"
207
207
  report = File.read(report_filename)
208
- expect(report).to match /#{bin_filename}/
209
- expect(report).to match /#{def_filename}/
208
+ expect(report).to match(/#{bin_filename}/)
209
+ expect(report).to match(/#{def_filename}/)
210
210
  FileUtils.rm report_filename
211
211
  FileUtils.rm bin_filename
212
212
  FileUtils.rm def_filename
@@ -225,8 +225,8 @@ module Cosmos
225
225
  report_filename = core.file_report(bin_filename, def_filename)
226
226
  expect(File.basename(report_filename)).to eql "testfile.csv"
227
227
  report = File.read(report_filename)
228
- expect(report).to match /#{bin_filename}/
229
- expect(report).to match /#{def_filename}/
228
+ expect(report).to match(/#{bin_filename}/)
229
+ expect(report).to match(/#{def_filename}/)
230
230
  FileUtils.rm report_filename
231
231
  FileUtils.rm bin_filename
232
232
  FileUtils.rm def_filename
@@ -248,8 +248,8 @@ module Cosmos
248
248
  file.puts ' APPEND_PARAMETER item2 16 UINT MIN MAX 0 "Item"'
249
249
  end
250
250
  core.file_open(bin_filename, def_filename)
251
- expect(core.file_hex).to match /Total Bytes Read: 4/
252
- expect(core.file_hex).to match /DE AD BE EF/
251
+ expect(core.file_hex).to match(/Total Bytes Read: 4/)
252
+ expect(core.file_hex).to match(/DE AD BE EF/)
253
253
  FileUtils.rm bin_filename
254
254
  FileUtils.rm def_filename
255
255
  end
@@ -294,9 +294,9 @@ module Cosmos
294
294
  end
295
295
  core.file_open(bin_filename, def_filename)
296
296
  result = core.table_check('table1')
297
- expect(result).to match "ITEM1: 3 outside valid range of 0..2"
298
- expect(result).to match "ITEM2: -3 outside valid range of -2..2"
299
- expect(result).to match "ITEM4: 0x6 outside valid range of 0x0..0x4"
297
+ expect(result).to match("ITEM1: 3 outside valid range of 0..2")
298
+ expect(result).to match("ITEM2: -3 outside valid range of -2..2")
299
+ expect(result).to match("ITEM4: 0x6 outside valid range of 0x0..0x4")
300
300
  FileUtils.rm bin_filename
301
301
  FileUtils.rm def_filename
302
302
  end
@@ -336,7 +336,7 @@ module Cosmos
336
336
  expect(core.config.tables['TABLE1'].read('item2')).to eq 0
337
337
  expect(core.config.tables['TABLE1'].read('item3')).to eq ""
338
338
  core.table_default('table1')
339
- expect(core.config.tables['TABLE1'].read('item1')).to eq -100
339
+ expect(core.config.tables['TABLE1'].read('item1')).to eq (-100)
340
340
  expect(core.config.tables['TABLE1'].read('item2')).to eq 0xDEADBEEF
341
341
  expect(core.config.tables['TABLE1'].read('item3')).to eq "HELLO"
342
342
  FileUtils.rm bin_filename
@@ -377,10 +377,10 @@ module Cosmos
377
377
  file.puts ' APPEND_PARAMETER item2 16 UINT MIN MAX 0 "Item"'
378
378
  end
379
379
  core.file_open(bin_filename, def_filename)
380
- expect(core.table_hex('table1')).to match /Total Bytes Read: 4/
381
- expect(core.table_hex('table1')).to match /DE AD BE EF/
382
- expect(core.table_hex('table2')).to match /Total Bytes Read: 4/
383
- expect(core.table_hex('table2')).to match /CA FE BA BE/
380
+ expect(core.table_hex('table1')).to match(/Total Bytes Read: 4/)
381
+ expect(core.table_hex('table1')).to match(/DE AD BE EF/)
382
+ expect(core.table_hex('table2')).to match(/Total Bytes Read: 4/)
383
+ expect(core.table_hex('table2')).to match(/CA FE BA BE/)
384
384
  FileUtils.rm bin_filename
385
385
  FileUtils.rm def_filename
386
386
  end
@@ -435,9 +435,9 @@ module Cosmos
435
435
  end
436
436
  core.file_open(bin_filename, def_filename)
437
437
  core.table_save('table1', 'table1.dat')
438
- expect(File.read('table1.dat').formatted).to match /DE AD BE EF/
438
+ expect(File.read('table1.dat').formatted).to match(/DE AD BE EF/)
439
439
  core.table_save('table2', 'table2.dat')
440
- expect(File.read('table2.dat').formatted).to match /CA FE BA BE/
440
+ expect(File.read('table2.dat').formatted).to match(/CA FE BA BE/)
441
441
  FileUtils.rm bin_filename
442
442
  FileUtils.rm def_filename
443
443
  FileUtils.rm 'table1.dat'
@@ -540,11 +540,11 @@ module Cosmos
540
540
  File.open(new_bin_filename,'w') {|file| file.write "\x00"*8 }
541
541
 
542
542
  core.file_open(bin_filename, def_filename)
543
- expect(File.read('newtestfile.dat').formatted).to match /00 00 00 00 00 00 00 00/
543
+ expect(File.read('newtestfile.dat').formatted).to match(/00 00 00 00 00 00 00 00/)
544
544
  core.table_commit('table1', 'newtestfile.dat', 'testfile_def.txt')
545
- expect(File.read('newtestfile.dat').formatted).to match /DE AD BE EF 00 00 00 00/
545
+ expect(File.read('newtestfile.dat').formatted).to match(/DE AD BE EF 00 00 00 00/)
546
546
  core.table_commit('table2', 'newtestfile.dat', 'testfile_def.txt')
547
- expect(File.read('newtestfile.dat').formatted).to match /DE AD BE EF CA FE BA BE/
547
+ expect(File.read('newtestfile.dat').formatted).to match(/DE AD BE EF CA FE BA BE/)
548
548
  FileUtils.rm bin_filename
549
549
  FileUtils.rm def_filename
550
550
  FileUtils.rm new_bin_filename
@@ -352,10 +352,11 @@ module Cosmos
352
352
  tf.unlink
353
353
 
354
354
  config = File.read(config_file)
355
- expect(config).to match /TARGET "INST"/
356
- expect(config).to match /SCREEN "hs.txt"/
357
- expect(config).to match /TARGET "SYSTEM"/
358
- expect(config).to match /SCREEN "status.txt"/
355
+ expect(config).to match(/TARGET "INST"/)
356
+ expect(config).to match(/SCREEN "hs.txt"/)
357
+ expect(config).to match(/TARGET "SYSTEM"/)
358
+ expect(config).to match(/SCREEN "status.txt"/)
359
+ FileUtils.rm_f config_file
359
360
  end
360
361
 
361
362
  it "saves the configuration" do
@@ -392,6 +393,7 @@ module Cosmos
392
393
  expect(config).to include(test_group)
393
394
  expect(config).to include("TARGET \"SYSTEM\"\n SCREEN \"status.txt\" 500 600\n SHOW_ON_STARTUP")
394
395
  expect(config.scan(/NEW_COLUMN/).count).to eql 2
396
+ FileUtils.rm_f config_file
395
397
  end
396
398
  end
397
399
 
@@ -45,7 +45,7 @@ module Cosmos
45
45
  $stderr = stderr
46
46
  save = Cosmos::PATH
47
47
  Cosmos::PATH = "HI"
48
- expect(stderr.string).to match /warning\: already initialized constant/
48
+ expect(stderr.string).to match(/warning\: already initialized constant/)
49
49
  Cosmos::PATH = save
50
50
 
51
51
  save_mutex = Cosmos::COSMOS_MUTEX
@@ -53,7 +53,7 @@ module Cosmos
53
53
  Cosmos::COSMOS_MUTEX = "HI"
54
54
  Cosmos::COSMOS_MUTEX = save_mutex
55
55
  end
56
- expect(stderr.string).not_to match "warning: already initialized constant COSMOS_MUTEX"
56
+ expect(stderr.string).not_to match("warning: already initialized constant COSMOS_MUTEX")
57
57
  $stderr = STDERR
58
58
  end
59
59
  end
@@ -166,7 +166,7 @@ module Cosmos
166
166
  system_exit_count = $system_exit_count
167
167
  Cosmos.marshal_dump('marshal_test', Proc.new { '' })
168
168
  expect($system_exit_count).to be > system_exit_count
169
- expect(stdout.string).to match "is defined for class Proc"
169
+ expect(stdout.string).to match("is defined for class Proc")
170
170
  end
171
171
  Cosmos.cleanup_exceptions()
172
172
  end
@@ -187,7 +187,7 @@ module Cosmos
187
187
 
188
188
  capture_io do |stdout|
189
189
  Cosmos.marshal_load('marshal_test')
190
- expect(stdout.string).to match "Marshal load failed with exception"
190
+ expect(stdout.string).to match("Marshal load failed with exception")
191
191
  end
192
192
  Cosmos.cleanup_exceptions()
193
193
  end
@@ -217,7 +217,7 @@ module Cosmos
217
217
  allow(Logger).to receive(:error) {|str| output = str}
218
218
  thread = Cosmos.run_process_check_output("ping 192.0.0.234 -n 1 -w 1000")
219
219
  sleep 0.1 while thread.alive?
220
- expect(output).to match "Pinging 192.0.0.234"
220
+ expect(output).to match("Pinging 192.0.0.234")
221
221
  end
222
222
  end
223
223
  end
@@ -311,7 +311,7 @@ module Cosmos
311
311
  raise "AHHH!!!"
312
312
  end
313
313
  expect($system_exit_count).to eql(system_exit_count + 1)
314
- expect(stdout.string).to match "Fatal Exception! Exiting..."
314
+ expect(stdout.string).to match("Fatal Exception! Exiting...")
315
315
  end
316
316
  Cosmos.cleanup_exceptions()
317
317
  end
@@ -323,7 +323,7 @@ module Cosmos
323
323
  system_exit_count = $system_exit_count
324
324
  Cosmos.handle_fatal_exception(RuntimeError.new)
325
325
  expect($system_exit_count).to eql(system_exit_count + 1)
326
- expect(stdout.string).to match "Fatal Exception! Exiting..."
326
+ expect(stdout.string).to match("Fatal Exception! Exiting...")
327
327
  end
328
328
  Cosmos.cleanup_exceptions()
329
329
  end
@@ -335,7 +335,7 @@ module Cosmos
335
335
  system_exit_count = $system_exit_count
336
336
  Cosmos.handle_critical_exception(RuntimeError.new)
337
337
  expect($system_exit_count).to eql(system_exit_count)
338
- expect(stdout.string).to match "Critical Exception!"
338
+ expect(stdout.string).to match("Critical Exception!")
339
339
  end
340
340
  Cosmos.cleanup_exceptions()
341
341
  end
@@ -350,7 +350,7 @@ module Cosmos
350
350
  def thread.graceful_kill
351
351
  end
352
352
  sleep 1
353
- expect(stdout.string).to match "Test thread unexpectedly died."
353
+ expect(stdout.string).to match("Test thread unexpectedly died.")
354
354
  Cosmos.kill_thread(thread, thread)
355
355
  end
356
356
  Cosmos.cleanup_exceptions()
@@ -17,6 +17,7 @@ module Cosmos
17
17
  before(:each) do
18
18
  @lines = []
19
19
  # CSV data can't have extra spaces in array values
20
+ @lines << "# This is a comment\n"
20
21
  @lines << "test,1,2,3\n"
21
22
  @lines << "bool1,true,false\n"
22
23
  @lines << "bool2,false,true\n"
@@ -29,27 +30,16 @@ module Cosmos
29
30
  @test_file.close
30
31
 
31
32
  @csv = CSV.new(@test_file.path)
32
- @dir_name = System.paths['LOGS']
33
33
  end
34
34
 
35
35
  after(:each) do
36
36
  Dir["*cosmos_csv_spec*"].each do |filename|
37
37
  File.delete(filename)
38
38
  end
39
- if @dir_created
40
- sleep(1)
41
- FileUtils.remove_dir(@dir_name, false)
42
- end
43
- end
44
-
45
- after(:all) do
46
- clean_config()
47
39
  end
48
40
 
49
41
  describe "initialize" do
50
42
  it "loads the CSV data and overwrites existing key/values" do
51
- lines = []
52
-
53
43
  tf = Tempfile.new("test.csv")
54
44
  tf.puts "test,1,2,3\n"
55
45
  tf.puts "other,10\n"
@@ -68,7 +58,7 @@ module Cosmos
68
58
  expect(@csv["test"]).to eq(%w(1 2 3))
69
59
  end
70
60
 
71
- it "returns all keys" do
61
+ it "returns all keys and ignores comments" do
72
62
  expect(@csv.keys).to eq(%w(test bool1 bool2 int float string))
73
63
  end
74
64
 
@@ -34,20 +34,20 @@ module Cosmos
34
34
  Logger.level = level
35
35
  if block
36
36
  Logger.send(method, "Message1") { "Block1" }
37
- expect(stdout.string).not_to match "Message1"
38
- expect(stdout.string).to match "#{method.upcase}: Block1"
37
+ expect(stdout.string).not_to match("Message1")
38
+ expect(stdout.string).to match("#{method.upcase}: Block1")
39
39
  else
40
40
  Logger.send(method, "Message1")
41
- expect(stdout.string).to match "#{method.upcase}: Message1"
41
+ expect(stdout.string).to match("#{method.upcase}: Message1")
42
42
  end
43
43
  Logger::instance.level = level + 1
44
44
  if block
45
45
  Logger.debug("Message2") { "Block2" }
46
- expect(stdout.string).not_to match "Message2"
47
- expect(stdout.string).not_to match "Block2"
46
+ expect(stdout.string).not_to match("Message2")
47
+ expect(stdout.string).not_to match("Block2")
48
48
  else
49
49
  Logger.send(method, "Message2")
50
- expect(stdout.string).not_to match "Message2"
50
+ expect(stdout.string).not_to match("Message2")
51
51
  end
52
52
  $stdout = STDOUT
53
53
  Logger.level = Logger::UNKNOWN
@@ -13,14 +13,6 @@ require "cosmos/utilities/message_log"
13
13
 
14
14
  module Cosmos
15
15
  describe MessageLog do
16
- before(:all) do
17
- System.class_eval('@@instance = nil')
18
- end
19
-
20
- after(:all) do
21
- clean_config()
22
- end
23
-
24
16
  describe "initialize" do
25
17
  it "accepts a tool name and use the default LOG path" do
26
18
  log = MessageLog.new('TEST')
@@ -28,8 +20,8 @@ module Cosmos
28
20
  log.stop
29
21
  Cosmos.set_working_dir do
30
22
  expect(File.exist?(log.filename)).to be true
31
- expect(log.filename).to match 'TEST'
32
- expect(log.filename).to match 'logs'
23
+ expect(log.filename).to match('TEST')
24
+ expect(log.filename).to match('logs')
33
25
  File.delete log.filename
34
26
  end
35
27
  end
@@ -39,7 +31,7 @@ module Cosmos
39
31
  log.start
40
32
  log.stop
41
33
  expect(File.exist?(log.filename)).to be true
42
- expect(log.filename).to match File.expand_path(File.dirname(__FILE__))
34
+ expect(log.filename).to match(File.expand_path(File.dirname(__FILE__)))
43
35
  File.delete log.filename
44
36
  end
45
37
  end
@@ -67,8 +67,8 @@ task :gemfile_stats do
67
67
  end
68
68
 
69
69
  # Reduce the number of labels due to overlap
70
- labels.each do |index, label|
71
- labels[index] = '' if index % 2 == 0
70
+ labels.each do |i, label|
71
+ labels[i] = '' if i % 2 == 0
72
72
  end
73
73
  g.labels = labels
74
74
  g.marker_font_size = 12
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cosmos
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.1
4
+ version: 4.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Melton
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-12-06 00:00:00.000000000 Z
12
+ date: 2018-04-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -31,40 +31,34 @@ dependencies:
31
31
  requirements:
32
32
  - - ">="
33
33
  - !ruby/object:Gem::Version
34
- version: '3'
34
+ version: '4'
35
35
  - - "<"
36
36
  - !ruby/object:Gem::Version
37
- version: '5'
37
+ version: '6'
38
38
  type: :runtime
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
41
41
  requirements:
42
42
  - - ">="
43
43
  - !ruby/object:Gem::Version
44
- version: '3'
44
+ version: '4'
45
45
  - - "<"
46
46
  - !ruby/object:Gem::Version
47
- version: '5'
47
+ version: '6'
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: rake
50
50
  requirement: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
55
- - - "<"
56
- - !ruby/object:Gem::Version
57
- version: '13'
54
+ version: '10.0'
58
55
  type: :runtime
59
56
  prerelease: false
60
57
  version_requirements: !ruby/object:Gem::Requirement
61
58
  requirements:
62
59
  - - ">="
63
60
  - !ruby/object:Gem::Version
64
- version: '0'
65
- - - "<"
66
- - !ruby/object:Gem::Version
67
- version: '13'
61
+ version: '10.0'
68
62
  - !ruby/object:Gem::Dependency
69
63
  name: json
70
64
  requirement: !ruby/object:Gem::Requirement
@@ -74,7 +68,7 @@ dependencies:
74
68
  version: '1.5'
75
69
  - - "<"
76
70
  - !ruby/object:Gem::Version
77
- version: '1.9'
71
+ version: '3'
78
72
  type: :runtime
79
73
  prerelease: false
80
74
  version_requirements: !ruby/object:Gem::Requirement
@@ -84,81 +78,63 @@ dependencies:
84
78
  version: '1.5'
85
79
  - - "<"
86
80
  - !ruby/object:Gem::Version
87
- version: '1.9'
81
+ version: '3'
88
82
  - !ruby/object:Gem::Dependency
89
83
  name: pry
90
84
  requirement: !ruby/object:Gem::Requirement
91
85
  requirements:
92
- - - ">="
86
+ - - "~>"
93
87
  - !ruby/object:Gem::Version
94
88
  version: '0.9'
95
- - - "<"
96
- - !ruby/object:Gem::Version
97
- version: '0.11'
98
89
  type: :runtime
99
90
  prerelease: false
100
91
  version_requirements: !ruby/object:Gem::Requirement
101
92
  requirements:
102
- - - ">="
93
+ - - "~>"
103
94
  - !ruby/object:Gem::Version
104
95
  version: '0.9'
105
- - - "<"
106
- - !ruby/object:Gem::Version
107
- version: '0.11'
108
96
  - !ruby/object:Gem::Dependency
109
97
  name: pry-doc
110
98
  requirement: !ruby/object:Gem::Requirement
111
99
  requirements:
112
- - - ">="
100
+ - - "~>"
113
101
  - !ruby/object:Gem::Version
114
102
  version: '0.5'
115
- - - "<"
116
- - !ruby/object:Gem::Version
117
- version: '0.7'
118
103
  type: :runtime
119
104
  prerelease: false
120
105
  version_requirements: !ruby/object:Gem::Requirement
121
106
  requirements:
122
- - - ">="
107
+ - - "~>"
123
108
  - !ruby/object:Gem::Version
124
109
  version: '0.5'
125
- - - "<"
126
- - !ruby/object:Gem::Version
127
- version: '0.7'
128
110
  - !ruby/object:Gem::Dependency
129
111
  name: yard
130
112
  requirement: !ruby/object:Gem::Requirement
131
113
  requirements:
132
- - - ">="
133
- - !ruby/object:Gem::Version
134
- version: '0.8'
135
- - - "<"
114
+ - - "~>"
136
115
  - !ruby/object:Gem::Version
137
- version: '0.10'
116
+ version: 0.9.11
138
117
  type: :runtime
139
118
  prerelease: false
140
119
  version_requirements: !ruby/object:Gem::Requirement
141
120
  requirements:
142
- - - ">="
143
- - !ruby/object:Gem::Version
144
- version: '0.8'
145
- - - "<"
121
+ - - "~>"
146
122
  - !ruby/object:Gem::Version
147
- version: '0.10'
123
+ version: 0.9.11
148
124
  - !ruby/object:Gem::Dependency
149
125
  name: uuidtools
150
126
  requirement: !ruby/object:Gem::Requirement
151
127
  requirements:
152
128
  - - "~>"
153
129
  - !ruby/object:Gem::Version
154
- version: 2.1.0
130
+ version: '2.1'
155
131
  type: :runtime
156
132
  prerelease: false
157
133
  version_requirements: !ruby/object:Gem::Requirement
158
134
  requirements:
159
135
  - - "~>"
160
136
  - !ruby/object:Gem::Version
161
- version: 2.1.0
137
+ version: '2.1'
162
138
  - !ruby/object:Gem::Dependency
163
139
  name: snmp
164
140
  requirement: !ruby/object:Gem::Requirement
@@ -179,14 +155,14 @@ dependencies:
179
155
  requirements:
180
156
  - - "~>"
181
157
  - !ruby/object:Gem::Version
182
- version: 1.2.1
158
+ version: '1.2'
183
159
  type: :runtime
184
160
  prerelease: false
185
161
  version_requirements: !ruby/object:Gem::Requirement
186
162
  requirements:
187
163
  - - "~>"
188
164
  - !ruby/object:Gem::Version
189
- version: 1.2.1
165
+ version: '1.2'
190
166
  - !ruby/object:Gem::Dependency
191
167
  name: nokogiri
192
168
  requirement: !ruby/object:Gem::Requirement
@@ -241,56 +217,84 @@ dependencies:
241
217
  requirements:
242
218
  - - "~>"
243
219
  - !ruby/object:Gem::Version
244
- version: 3.10.0
220
+ version: '3.10'
245
221
  type: :runtime
246
222
  prerelease: false
247
223
  version_requirements: !ruby/object:Gem::Requirement
248
224
  requirements:
249
225
  - - "~>"
250
226
  - !ruby/object:Gem::Version
251
- version: 3.10.0
227
+ version: '3.10'
252
228
  - !ruby/object:Gem::Dependency
253
229
  name: rack
254
230
  requirement: !ruby/object:Gem::Requirement
255
231
  requirements:
256
232
  - - "~>"
257
233
  - !ruby/object:Gem::Version
258
- version: 2.0.3
234
+ version: '2.0'
259
235
  type: :runtime
260
236
  prerelease: false
261
237
  version_requirements: !ruby/object:Gem::Requirement
262
238
  requirements:
263
239
  - - "~>"
264
240
  - !ruby/object:Gem::Version
265
- version: 2.0.3
241
+ version: '2.0'
266
242
  - !ruby/object:Gem::Dependency
267
243
  name: httpclient
268
244
  requirement: !ruby/object:Gem::Requirement
269
245
  requirements:
270
246
  - - "~>"
271
247
  - !ruby/object:Gem::Version
272
- version: 2.8.3
248
+ version: '2.8'
273
249
  type: :runtime
274
250
  prerelease: false
275
251
  version_requirements: !ruby/object:Gem::Requirement
276
252
  requirements:
277
253
  - - "~>"
278
254
  - !ruby/object:Gem::Version
279
- version: 2.8.3
255
+ version: '2.8'
256
+ - !ruby/object:Gem::Dependency
257
+ name: stopgap_13632
258
+ requirement: !ruby/object:Gem::Requirement
259
+ requirements:
260
+ - - "~>"
261
+ - !ruby/object:Gem::Version
262
+ version: 1.1.1
263
+ type: :runtime
264
+ prerelease: false
265
+ version_requirements: !ruby/object:Gem::Requirement
266
+ requirements:
267
+ - - "~>"
268
+ - !ruby/object:Gem::Version
269
+ version: 1.1.1
270
+ - !ruby/object:Gem::Dependency
271
+ name: diff-lcs
272
+ requirement: !ruby/object:Gem::Requirement
273
+ requirements:
274
+ - - "~>"
275
+ - !ruby/object:Gem::Version
276
+ version: '1.3'
277
+ type: :development
278
+ prerelease: false
279
+ version_requirements: !ruby/object:Gem::Requirement
280
+ requirements:
281
+ - - "~>"
282
+ - !ruby/object:Gem::Version
283
+ version: '1.3'
280
284
  - !ruby/object:Gem::Dependency
281
285
  name: rspec
282
286
  requirement: !ruby/object:Gem::Requirement
283
287
  requirements:
284
288
  - - "~>"
285
289
  - !ruby/object:Gem::Version
286
- version: 3.5.0
290
+ version: '3.5'
287
291
  type: :development
288
292
  prerelease: false
289
293
  version_requirements: !ruby/object:Gem::Requirement
290
294
  requirements:
291
295
  - - "~>"
292
296
  - !ruby/object:Gem::Version
293
- version: 3.5.0
297
+ version: '3.5'
294
298
  - !ruby/object:Gem::Dependency
295
299
  name: flog
296
300
  requirement: !ruby/object:Gem::Requirement
@@ -325,14 +329,14 @@ dependencies:
325
329
  requirements:
326
330
  - - "~>"
327
331
  - !ruby/object:Gem::Version
328
- version: '1.0'
332
+ version: '4.0'
329
333
  type: :development
330
334
  prerelease: false
331
335
  version_requirements: !ruby/object:Gem::Requirement
332
336
  requirements:
333
337
  - - "~>"
334
338
  - !ruby/object:Gem::Version
335
- version: '1.0'
339
+ version: '4.0'
336
340
  - !ruby/object:Gem::Dependency
337
341
  name: roodi
338
342
  requirement: !ruby/object:Gem::Requirement
@@ -367,14 +371,14 @@ dependencies:
367
371
  requirements:
368
372
  - - "~>"
369
373
  - !ruby/object:Gem::Version
370
- version: '2.0'
374
+ version: '3.0'
371
375
  type: :development
372
376
  prerelease: false
373
377
  version_requirements: !ruby/object:Gem::Requirement
374
378
  requirements:
375
379
  - - "~>"
376
380
  - !ruby/object:Gem::Version
377
- version: '2.0'
381
+ version: '3.0'
378
382
  - !ruby/object:Gem::Dependency
379
383
  name: guard-bundler
380
384
  requirement: !ruby/object:Gem::Requirement
@@ -409,14 +413,14 @@ dependencies:
409
413
  requirements:
410
414
  - - "~>"
411
415
  - !ruby/object:Gem::Version
412
- version: '0.11'
416
+ version: '0.15'
413
417
  type: :development
414
418
  prerelease: false
415
419
  version_requirements: !ruby/object:Gem::Requirement
416
420
  requirements:
417
421
  - - "~>"
418
422
  - !ruby/object:Gem::Version
419
- version: '0.11'
423
+ version: '0.15'
420
424
  - !ruby/object:Gem::Dependency
421
425
  name: codecov
422
426
  requirement: !ruby/object:Gem::Requirement
@@ -451,14 +455,14 @@ dependencies:
451
455
  requirements:
452
456
  - - "~>"
453
457
  - !ruby/object:Gem::Version
454
- version: 0.15.0
458
+ version: '0.16'
455
459
  type: :development
456
460
  prerelease: false
457
461
  version_requirements: !ruby/object:Gem::Requirement
458
462
  requirements:
459
463
  - - "~>"
460
464
  - !ruby/object:Gem::Version
461
- version: 0.15.0
465
+ version: '0.16'
462
466
  description: |2
463
467
  Ball Aerospace COSMOS provides all the functionality needed to send
464
468
  commands to and receive data from one or more embedded systems
@@ -473,6 +477,7 @@ executables:
473
477
  - rubysloc
474
478
  - cstol_converter
475
479
  - xtce_converter
480
+ - dart_import
476
481
  extensions:
477
482
  - ext/cosmos/ext/array/extconf.rb
478
483
  - ext/cosmos/ext/buffered_file/extconf.rb
@@ -625,6 +630,7 @@ files:
625
630
  - autohotkey/tools/CmdTlmServerAHK
626
631
  - autohotkey/tools/CmdTlmServerAHK2
627
632
  - autohotkey/tools/ConfigEditor
633
+ - autohotkey/tools/ConfigEditorAHK
628
634
  - autohotkey/tools/DataViewer
629
635
  - autohotkey/tools/DataViewerAHK
630
636
  - autohotkey/tools/HandbookCreatorAHK
@@ -673,6 +679,7 @@ files:
673
679
  - autohotkey/tools/cmd_sequence2.ahk
674
680
  - autohotkey/tools/cmd_tlm_server.ahk
675
681
  - autohotkey/tools/cmd_tlm_server2.ahk
682
+ - autohotkey/tools/config_editor.ahk
676
683
  - autohotkey/tools/data_viewer.ahk
677
684
  - autohotkey/tools/handbook_creator.ahk
678
685
  - autohotkey/tools/launcher.ahk
@@ -700,6 +707,7 @@ files:
700
707
  - autohotkey/tools/tool_launch.rb
701
708
  - bin/cosmos
702
709
  - bin/cstol_converter
710
+ - bin/dart_import
703
711
  - bin/exchndl20-x64.dll
704
712
  - bin/exchndl20.dll
705
713
  - bin/exchndl21-x64.dll
@@ -776,6 +784,7 @@ files:
776
784
  - data/critical.wav
777
785
  - data/cts.png
778
786
  - data/cut.png
787
+ - data/dart.png
779
788
  - data/data_viewer.png
780
789
  - data/delete.png
781
790
  - data/delete_database.png
@@ -836,6 +845,7 @@ files:
836
845
  - demo/Launcher
837
846
  - demo/Launcher.bat
838
847
  - demo/Rakefile
848
+ - demo/config/dart/Gemfile
839
849
  - demo/config/data/attitude.bin
840
850
  - demo/config/data/crc.txt
841
851
  - demo/config/data/diamond.STL
@@ -961,6 +971,8 @@ files:
961
971
  - demo/lib/example_target.rb
962
972
  - demo/lib/scpi_target.rb
963
973
  - demo/lib/user_version.rb
974
+ - demo/outputs/dart/data/README.txt
975
+ - demo/outputs/dart/logs/README.txt
964
976
  - demo/outputs/handbooks/assets/css/bootstrap-theme.css
965
977
  - demo/outputs/handbooks/assets/css/bootstrap-theme.min.css
966
978
  - demo/outputs/handbooks/assets/css/bootstrap.css
@@ -998,6 +1010,8 @@ files:
998
1010
  - demo/tools/CmdTlmServer.bat
999
1011
  - demo/tools/ConfigEditor
1000
1012
  - demo/tools/ConfigEditor.bat
1013
+ - demo/tools/Dart
1014
+ - demo/tools/Dart.bat
1001
1015
  - demo/tools/DataViewer
1002
1016
  - demo/tools/DataViewer.bat
1003
1017
  - demo/tools/ExampleTarget
@@ -1152,6 +1166,7 @@ files:
1152
1166
  - install/Launcher
1153
1167
  - install/Launcher.bat
1154
1168
  - install/Rakefile
1169
+ - install/config/dart/Gemfile
1155
1170
  - install/config/data/README.txt
1156
1171
  - install/config/data/crc.txt
1157
1172
  - install/config/system/system.txt
@@ -1184,6 +1199,8 @@ files:
1184
1199
  - install/config/tools/tlm_grapher/README.txt
1185
1200
  - install/config/tools/tlm_viewer/tlm_viewer.txt
1186
1201
  - install/lib/user_version.rb
1202
+ - install/outputs/dart/data/README.txt
1203
+ - install/outputs/dart/logs/README.txt
1187
1204
  - install/outputs/handbooks/assets/css/bootstrap-theme.css
1188
1205
  - install/outputs/handbooks/assets/css/bootstrap-theme.min.css
1189
1206
  - install/outputs/handbooks/assets/css/bootstrap.css
@@ -1215,6 +1232,8 @@ files:
1215
1232
  - install/tools/CmdTlmServer.bat
1216
1233
  - install/tools/ConfigEditor
1217
1234
  - install/tools/ConfigEditor.bat
1235
+ - install/tools/Dart
1236
+ - install/tools/Dart.bat
1218
1237
  - install/tools/DataViewer
1219
1238
  - install/tools/DataViewer.bat
1220
1239
  - install/tools/HandbookCreator
@@ -1368,6 +1387,116 @@ files:
1368
1387
  - lib/cosmos/core_ext/string.rb
1369
1388
  - lib/cosmos/core_ext/stringio.rb
1370
1389
  - lib/cosmos/core_ext/time.rb
1390
+ - lib/cosmos/dart/.rspec
1391
+ - lib/cosmos/dart/Gemfile
1392
+ - lib/cosmos/dart/Rakefile
1393
+ - lib/cosmos/dart/app/assets/config/manifest.js
1394
+ - lib/cosmos/dart/app/assets/images/.keep
1395
+ - lib/cosmos/dart/app/assets/javascripts/application.js
1396
+ - lib/cosmos/dart/app/assets/javascripts/cable.js
1397
+ - lib/cosmos/dart/app/assets/stylesheets/application.css.scss
1398
+ - lib/cosmos/dart/app/channels/application_cable/channel.rb
1399
+ - lib/cosmos/dart/app/channels/application_cable/connection.rb
1400
+ - lib/cosmos/dart/app/controllers/application_controller.rb
1401
+ - lib/cosmos/dart/app/helpers/application_helper.rb
1402
+ - lib/cosmos/dart/app/jobs/application_job.rb
1403
+ - lib/cosmos/dart/app/mailers/application_mailer.rb
1404
+ - lib/cosmos/dart/app/models/application_record.rb
1405
+ - lib/cosmos/dart/app/models/item.rb
1406
+ - lib/cosmos/dart/app/models/item_to_decom_table_mapping.rb
1407
+ - lib/cosmos/dart/app/models/packet.rb
1408
+ - lib/cosmos/dart/app/models/packet_config.rb
1409
+ - lib/cosmos/dart/app/models/packet_log.rb
1410
+ - lib/cosmos/dart/app/models/packet_log_entry.rb
1411
+ - lib/cosmos/dart/app/models/system_config.rb
1412
+ - lib/cosmos/dart/app/models/target.rb
1413
+ - lib/cosmos/dart/app/views/layouts/application.html.erb
1414
+ - lib/cosmos/dart/app/views/layouts/mailer.html.erb
1415
+ - lib/cosmos/dart/app/views/layouts/mailer.text.erb
1416
+ - lib/cosmos/dart/bin/bundle
1417
+ - lib/cosmos/dart/bin/rails
1418
+ - lib/cosmos/dart/bin/rake
1419
+ - lib/cosmos/dart/bin/setup
1420
+ - lib/cosmos/dart/bin/update
1421
+ - lib/cosmos/dart/config.ru
1422
+ - lib/cosmos/dart/config/application.rb
1423
+ - lib/cosmos/dart/config/boot.rb
1424
+ - lib/cosmos/dart/config/cable.yml
1425
+ - lib/cosmos/dart/config/database.yml
1426
+ - lib/cosmos/dart/config/environment.rb
1427
+ - lib/cosmos/dart/config/environments/development.rb
1428
+ - lib/cosmos/dart/config/environments/production.rb
1429
+ - lib/cosmos/dart/config/environments/test.rb
1430
+ - lib/cosmos/dart/config/initializers/application_controller_renderer.rb
1431
+ - lib/cosmos/dart/config/initializers/assets.rb
1432
+ - lib/cosmos/dart/config/initializers/backtrace_silencers.rb
1433
+ - lib/cosmos/dart/config/initializers/cookies_serializer.rb
1434
+ - lib/cosmos/dart/config/initializers/filter_parameter_logging.rb
1435
+ - lib/cosmos/dart/config/initializers/inflections.rb
1436
+ - lib/cosmos/dart/config/initializers/mime_types.rb
1437
+ - lib/cosmos/dart/config/initializers/new_framework_defaults.rb
1438
+ - lib/cosmos/dart/config/initializers/session_store.rb
1439
+ - lib/cosmos/dart/config/initializers/wrap_parameters.rb
1440
+ - lib/cosmos/dart/config/locales/en.yml
1441
+ - lib/cosmos/dart/config/puma.rb
1442
+ - lib/cosmos/dart/config/routes.rb
1443
+ - lib/cosmos/dart/config/secrets.yml
1444
+ - lib/cosmos/dart/db/migrate/20170406172907_create_targets.rb
1445
+ - lib/cosmos/dart/db/migrate/20170406172927_create_packets.rb
1446
+ - lib/cosmos/dart/db/migrate/20170406172937_create_packet_logs.rb
1447
+ - lib/cosmos/dart/db/migrate/20170406172943_create_packet_log_entries.rb
1448
+ - lib/cosmos/dart/db/migrate/20170406183500_change_packet_log_entries_primary_key.rb
1449
+ - lib/cosmos/dart/db/migrate/20170407153618_add_unique_requirements.rb
1450
+ - lib/cosmos/dart/db/migrate/20170511155447_add_meta_id_to_packet_log_entries.rb
1451
+ - lib/cosmos/dart/db/migrate/20170523185056_rename_received_time_and_add_is_tlm_to_packet_log_entries.rb
1452
+ - lib/cosmos/dart/db/migrate/20170525201157_create_items.rb
1453
+ - lib/cosmos/dart/db/migrate/20170525201315_create_system_configs.rb
1454
+ - lib/cosmos/dart/db/migrate/20170525201624_create_packet_configs.rb
1455
+ - lib/cosmos/dart/db/migrate/20170525201745_create_item_to_decom_table_mappings.rb
1456
+ - lib/cosmos/dart/db/migrate/20170525201939_create_decom_tables.rb
1457
+ - lib/cosmos/dart/db/migrate/20170525202051_add_decom_state_to_packet_log_entry.rb
1458
+ - lib/cosmos/dart/db/migrate/20170913160409_update_items.rb
1459
+ - lib/cosmos/dart/db/migrate/20170913160558_update_item_to_decom_table_mapping.rb
1460
+ - lib/cosmos/dart/db/migrate/20170913160916_udpate_decom_table.rb
1461
+ - lib/cosmos/dart/db/migrate/20170913212026_add_ready_to_packet_configs.rb
1462
+ - lib/cosmos/dart/db/migrate/20170913223556_modify_tables.rb
1463
+ - lib/cosmos/dart/db/migrate/20170914215744_modify_mapping_table.rb
1464
+ - lib/cosmos/dart/db/migrate/20170919201433_add_system_config_id_to_packet_config.rb
1465
+ - lib/cosmos/dart/db/migrate/20170919210307_add_max_table_index_to_packet_configs.rb
1466
+ - lib/cosmos/dart/db/migrate/20171215225546_add_ready_to_packet_log_entries.rb
1467
+ - lib/cosmos/dart/db/migrate/20180116214338_add_index_for_ple_ready_to_packet_log_entries.rb
1468
+ - lib/cosmos/dart/db/schema.rb
1469
+ - lib/cosmos/dart/db/seeds.rb
1470
+ - lib/cosmos/dart/examples/dart_decom_client.rb
1471
+ - lib/cosmos/dart/examples/dart_stream_client.rb
1472
+ - lib/cosmos/dart/lib/dart_common.rb
1473
+ - lib/cosmos/dart/lib/dart_database_cleaner.rb
1474
+ - lib/cosmos/dart/lib/dart_decom_query.rb
1475
+ - lib/cosmos/dart/lib/dart_decommutator.rb
1476
+ - lib/cosmos/dart/lib/dart_importer.rb
1477
+ - lib/cosmos/dart/lib/dart_logging.rb
1478
+ - lib/cosmos/dart/lib/dart_packet_log_writer.rb
1479
+ - lib/cosmos/dart/lib/dart_reducer_manager.rb
1480
+ - lib/cosmos/dart/lib/dart_reducer_worker_thread.rb
1481
+ - lib/cosmos/dart/lib/dart_tcpip_server_interface.rb
1482
+ - lib/cosmos/dart/processes/dart.rb
1483
+ - lib/cosmos/dart/processes/dart_decom_server.rb
1484
+ - lib/cosmos/dart/processes/dart_import.rb
1485
+ - lib/cosmos/dart/processes/dart_ingester.rb
1486
+ - lib/cosmos/dart/processes/dart_reducer.rb
1487
+ - lib/cosmos/dart/processes/dart_stream_server.rb
1488
+ - lib/cosmos/dart/processes/dart_worker.rb
1489
+ - lib/cosmos/dart/spec/dart/dart_common_spec.rb
1490
+ - lib/cosmos/dart/spec/dart/dart_database_cleaner_spec.rb
1491
+ - lib/cosmos/dart/spec/dart/dart_decom_query_spec.rb
1492
+ - lib/cosmos/dart/spec/dart/dart_decommutator_spec.rb
1493
+ - lib/cosmos/dart/spec/dart/dart_importer_spec.rb
1494
+ - lib/cosmos/dart/spec/dart/dart_logging_spec.rb
1495
+ - lib/cosmos/dart/spec/dart/dart_packet_log_writer_spec.rb
1496
+ - lib/cosmos/dart/spec/dart/dart_reducer_manager_spec.rb
1497
+ - lib/cosmos/dart/spec/dart/dart_tcpip_server_interface_spec.rb
1498
+ - lib/cosmos/dart/spec/rails_helper.rb
1499
+ - lib/cosmos/dart/spec/spec_helper.rb
1371
1500
  - lib/cosmos/ext/.keep
1372
1501
  - lib/cosmos/gui/choosers/combobox_chooser.rb
1373
1502
  - lib/cosmos/gui/choosers/file_chooser.rb
@@ -1380,6 +1509,7 @@ files:
1380
1509
  - lib/cosmos/gui/dialogs/calendar_dialog.rb
1381
1510
  - lib/cosmos/gui/dialogs/cmd_details_dialog.rb
1382
1511
  - lib/cosmos/gui/dialogs/cmd_tlm_raw_dialog.rb
1512
+ - lib/cosmos/gui/dialogs/dart_dialog.rb
1383
1513
  - lib/cosmos/gui/dialogs/details_dialog.rb
1384
1514
  - lib/cosmos/gui/dialogs/exception_dialog.rb
1385
1515
  - lib/cosmos/gui/dialogs/exception_list_dialog.rb
@@ -1426,6 +1556,8 @@ files:
1426
1556
  - lib/cosmos/gui/utilities/analyze_log.rb
1427
1557
  - lib/cosmos/gui/utilities/screenshot.rb
1428
1558
  - lib/cosmos/gui/utilities/script_module_gui.rb
1559
+ - lib/cosmos/gui/widgets/dart_frame.rb
1560
+ - lib/cosmos/gui/widgets/dart_meta_frame.rb
1429
1561
  - lib/cosmos/gui/widgets/full_text_search_line_edit.rb
1430
1562
  - lib/cosmos/gui/widgets/packet_log_frame.rb
1431
1563
  - lib/cosmos/gui/widgets/realtime_button_bar.rb
@@ -1601,6 +1733,7 @@ files:
1601
1733
  - lib/cosmos/tools/tlm_grapher/plots/xy_plot.rb
1602
1734
  - lib/cosmos/tools/tlm_grapher/tabbed_plots/overview_tabbed_plots.rb
1603
1735
  - lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_config.rb
1736
+ - lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_dart_thread.rb
1604
1737
  - lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_data_object_editor.rb
1605
1738
  - lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_logfile_thread.rb
1606
1739
  - lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_plot_editor.rb
@@ -1614,6 +1747,7 @@ files:
1614
1747
  - lib/cosmos/tools/tlm_viewer/widgets.rb
1615
1748
  - lib/cosmos/tools/tlm_viewer/widgets/aging_widget.rb
1616
1749
  - lib/cosmos/tools/tlm_viewer/widgets/array_widget.rb
1750
+ - lib/cosmos/tools/tlm_viewer/widgets/backgroundbutton_widget.rb
1617
1751
  - lib/cosmos/tools/tlm_viewer/widgets/block_widget.rb
1618
1752
  - lib/cosmos/tools/tlm_viewer/widgets/button_widget.rb
1619
1753
  - lib/cosmos/tools/tlm_viewer/widgets/canvas_clickable.rb
@@ -1742,6 +1876,7 @@ files:
1742
1876
  - spec/install/config/targets/SYSTEM/cmd_tlm_server.txt
1743
1877
  - spec/install/config/targets/SYSTEM/screens/status.txt
1744
1878
  - spec/install/config/targets/SYSTEM/target.txt
1879
+ - spec/install/config/tools/cmd_tlm_server/cmd_tlm_server.txt
1745
1880
  - spec/install/lib/README.txt
1746
1881
  - spec/interfaces/cmd_tlm_server_interface_spec.rb
1747
1882
  - spec/interfaces/interface_spec.rb
@@ -2076,7 +2211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2076
2211
  version: '0'
2077
2212
  requirements: []
2078
2213
  rubyforge_project:
2079
- rubygems_version: 2.4.5.1
2214
+ rubygems_version: 2.4.5.3
2080
2215
  signing_key:
2081
2216
  specification_version: 4
2082
2217
  summary: Ball Aerospace COSMOS