ceedling 0.13.0 → 0.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (308) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +1 -1
  3. data/Gemfile.lock +18 -14
  4. data/README.md +6 -4
  5. data/assets/project_as_gem.yml +1 -1
  6. data/assets/rakefile_as_gem.rb +2 -0
  7. data/assets/rakefile_with_guts.rb +3 -1
  8. data/ceedling.gemspec +1 -0
  9. data/examples/blinky/rakefile.rb +2 -2
  10. data/examples/temp_sensor/rakefile.rb +1 -1
  11. data/examples/temp_sensor/src/TemperatureFilter.c +1 -2
  12. data/examples/temp_sensor/test/TestTemperatureCalculator.c +1 -1
  13. data/examples/temp_sensor/test/TestTemperatureFilter.c +12 -2
  14. data/lib/ceedling.rb +94 -22
  15. data/lib/{build_invoker_utils.rb → ceedling/build_invoker_utils.rb} +27 -27
  16. data/lib/{cacheinator.rb → ceedling/cacheinator.rb} +42 -42
  17. data/lib/{cacheinator_helper.rb → ceedling/cacheinator_helper.rb} +12 -12
  18. data/lib/{cmock_builder.rb → ceedling/cmock_builder.rb} +15 -15
  19. data/lib/{configurator.rb → ceedling/configurator.rb} +333 -329
  20. data/lib/{configurator_builder.rb → ceedling/configurator_builder.rb} +437 -437
  21. data/lib/{configurator_plugins.rb → ceedling/configurator_plugins.rb} +124 -124
  22. data/lib/{configurator_setup.rb → ceedling/configurator_setup.rb} +124 -124
  23. data/lib/{configurator_validator.rb → ceedling/configurator_validator.rb} +184 -184
  24. data/lib/{constants.rb → ceedling/constants.rb} +20 -17
  25. data/lib/{defaults.rb → ceedling/defaults.rb} +19 -18
  26. data/lib/{dependinator.rb → ceedling/dependinator.rb} +92 -92
  27. data/lib/{erb_wrapper.rb → ceedling/erb_wrapper.rb} +8 -8
  28. data/lib/{file_finder.rb → ceedling/file_finder.rb} +132 -132
  29. data/lib/{file_finder_helper.rb → ceedling/file_finder_helper.rb} +54 -54
  30. data/lib/{file_path_utils.rb → ceedling/file_path_utils.rb} +189 -189
  31. data/lib/{file_system_utils.rb → ceedling/file_system_utils.rb} +69 -69
  32. data/lib/{file_system_wrapper.rb → ceedling/file_system_wrapper.rb} +9 -9
  33. data/lib/{file_wrapper.rb → ceedling/file_wrapper.rb} +79 -79
  34. data/lib/{flaginator.rb → ceedling/flaginator.rb} +54 -54
  35. data/lib/{generator.rb → ceedling/generator.rb} +164 -164
  36. data/lib/{generator_helper.rb → ceedling/generator_helper.rb} +40 -40
  37. data/lib/{generator_test_results.rb → ceedling/generator_test_results.rb} +86 -89
  38. data/lib/{generator_test_results_sanity_checker.rb → ceedling/generator_test_results_sanity_checker.rb} +64 -62
  39. data/lib/{generator_test_runner.rb → ceedling/generator_test_runner.rb} +63 -63
  40. data/lib/{loginator.rb → ceedling/loginator.rb} +31 -31
  41. data/lib/{makefile.rb → ceedling/makefile.rb} +0 -0
  42. data/lib/{objects.yml → ceedling/objects.yml} +0 -0
  43. data/lib/{par_map.rb → ceedling/par_map.rb} +0 -0
  44. data/lib/{plugin.rb → ceedling/plugin.rb} +80 -80
  45. data/lib/{plugin_builder.rb → ceedling/plugin_builder.rb} +52 -52
  46. data/lib/{plugin_manager.rb → ceedling/plugin_manager.rb} +107 -107
  47. data/lib/{plugin_manager_helper.rb → ceedling/plugin_manager_helper.rb} +19 -19
  48. data/lib/{plugin_reportinator.rb → ceedling/plugin_reportinator.rb} +2 -2
  49. data/lib/{plugin_reportinator_helper.rb → ceedling/plugin_reportinator_helper.rb} +1 -1
  50. data/lib/{preprocessinator.rb → ceedling/preprocessinator.rb} +43 -43
  51. data/lib/{preprocessinator_extractor.rb → ceedling/preprocessinator_extractor.rb} +30 -30
  52. data/lib/{preprocessinator_file_handler.rb → ceedling/preprocessinator_file_handler.rb} +21 -21
  53. data/lib/{preprocessinator_helper.rb → ceedling/preprocessinator_helper.rb} +46 -46
  54. data/lib/ceedling/preprocessinator_includes_handler.rb +82 -0
  55. data/lib/{project_config_manager.rb → ceedling/project_config_manager.rb} +38 -38
  56. data/lib/{project_file_loader.rb → ceedling/project_file_loader.rb} +64 -64
  57. data/lib/{rake_utils.rb → ceedling/rake_utils.rb} +17 -17
  58. data/lib/{rake_wrapper.rb → ceedling/rake_wrapper.rb} +33 -33
  59. data/lib/{rakefile.rb → ceedling/rakefile.rb} +78 -74
  60. data/lib/{release_invoker.rb → ceedling/release_invoker.rb} +58 -58
  61. data/lib/{release_invoker_helper.rb → ceedling/release_invoker_helper.rb} +16 -16
  62. data/lib/{reportinator.rb → ceedling/reportinator.rb} +9 -9
  63. data/lib/{rules_cmock.rake → ceedling/rules_cmock.rake} +9 -9
  64. data/lib/{rules_preprocess.rake → ceedling/rules_preprocess.rake} +26 -26
  65. data/lib/{rules_release.rake → ceedling/rules_release.rake} +79 -79
  66. data/lib/{rules_release_deep_dependencies.rake → ceedling/rules_release_deep_dependencies.rake} +15 -15
  67. data/lib/{rules_tests.rake → ceedling/rules_tests.rake} +59 -59
  68. data/lib/{rules_tests_deep_dependencies.rake → ceedling/rules_tests_deep_dependencies.rake} +15 -15
  69. data/lib/{setupinator.rb → ceedling/setupinator.rb} +51 -51
  70. data/lib/{stream_wrapper.rb → ceedling/stream_wrapper.rb} +20 -20
  71. data/lib/{streaminator.rb → ceedling/streaminator.rb} +40 -41
  72. data/lib/{streaminator_helper.rb → ceedling/streaminator_helper.rb} +15 -15
  73. data/lib/{system_utils.rb → ceedling/system_utils.rb} +0 -0
  74. data/lib/{system_wrapper.rb → ceedling/system_wrapper.rb} +76 -76
  75. data/lib/{target_loader.rb → ceedling/target_loader.rb} +0 -0
  76. data/lib/{task_invoker.rb → ceedling/task_invoker.rb} +89 -89
  77. data/lib/{tasks_base.rake → ceedling/tasks_base.rake} +104 -104
  78. data/lib/{tasks_filesystem.rake → ceedling/tasks_filesystem.rake} +91 -91
  79. data/lib/{tasks_release.rake → ceedling/tasks_release.rake} +28 -28
  80. data/lib/{tasks_release_deep_dependencies.rake → ceedling/tasks_release_deep_dependencies.rake} +9 -9
  81. data/lib/{tasks_tests.rake → ceedling/tasks_tests.rake} +52 -52
  82. data/lib/{tasks_tests_deep_dependencies.rake → ceedling/tasks_tests_deep_dependencies.rake} +9 -9
  83. data/lib/{tasks_vendor.rake → ceedling/tasks_vendor.rake} +36 -36
  84. data/lib/{test_includes_extractor.rb → ceedling/test_includes_extractor.rb} +81 -81
  85. data/lib/{test_invoker.rb → ceedling/test_invoker.rb} +97 -97
  86. data/lib/{test_invoker_helper.rb → ceedling/test_invoker_helper.rb} +28 -28
  87. data/lib/{tool_executor.rb → ceedling/tool_executor.rb} +215 -212
  88. data/lib/{tool_executor_helper.rb → ceedling/tool_executor_helper.rb} +115 -115
  89. data/lib/{verbosinator.rb → ceedling/verbosinator.rb} +10 -10
  90. data/lib/ceedling/version.rb +1 -1
  91. data/lib/{yaml_wrapper.rb → ceedling/yaml_wrapper.rb} +17 -16
  92. data/license.txt +31 -0
  93. data/plugins/bullseye/lib/bullseye.rb +2 -2
  94. data/plugins/gcov/gcov.rb +2 -2
  95. data/plugins/module_generator/lib/module_generator.rb +4 -3
  96. data/plugins/stdout_ide_tests_report/lib/stdout_ide_tests_report.rb +8 -8
  97. data/plugins/stdout_pretty_tests_report/lib/stdout_pretty_tests_report.rb +3 -3
  98. data/plugins/teamcity_tests_report/config/teamcity_tests_report.yml +4 -0
  99. data/plugins/teamcity_tests_report/lib/teamcity_tests_report.rb +57 -0
  100. data/plugins/xml_tests_report/xml_tests_report.rb +4 -4
  101. data/release/version.info +1 -1
  102. data/spec/ceedling_spec.rb +154 -0
  103. data/spec/par_map_spec.rb +1 -1
  104. data/spec/preprocessinator_extractor_spec.rb +26 -27
  105. data/spec/preprocessinator_includes_handler_spec.rb +175 -0
  106. data/spec/spec_helper.rb +8 -27
  107. data/test_graveyard/integration/paths_test.rb +2 -2
  108. data/test_graveyard/unit/busted/configurator_builder_test.rb +2 -2
  109. data/test_graveyard/unit/busted/configurator_test.rb +1 -1
  110. data/test_graveyard/unit/busted/configurator_validator_test.rb +1 -1
  111. data/test_graveyard/unit/busted/dependinator_test.rb +1 -1
  112. data/test_graveyard/unit/busted/file_finder_helper_test.rb +1 -1
  113. data/test_graveyard/unit/busted/file_finder_test.rb +1 -1
  114. data/test_graveyard/unit/busted/file_path_utils_test.rb +1 -1
  115. data/test_graveyard/unit/busted/file_system_utils_test.rb +1 -1
  116. data/test_graveyard/unit/busted/generator_test.rb +1 -1
  117. data/test_graveyard/unit/busted/generator_test_results_test.rb +1 -1
  118. data/test_graveyard/unit/busted/generator_test_runner_test.rb +1 -1
  119. data/test_graveyard/unit/busted/preprocessinator_file_handler_test.rb +1 -1
  120. data/test_graveyard/unit/busted/preprocessinator_helper_test.rb +1 -1
  121. data/test_graveyard/unit/busted/preprocessinator_includes_handler_test.rb +1 -1
  122. data/test_graveyard/unit/busted/preprocessinator_test.rb +1 -1
  123. data/test_graveyard/unit/busted/project_file_loader_test.rb +1 -1
  124. data/test_graveyard/unit/busted/setupinator_test.rb +1 -1
  125. data/test_graveyard/unit/busted/streaminator_test.rb +2 -2
  126. data/test_graveyard/unit/busted/task_invoker_test.rb +1 -1
  127. data/test_graveyard/unit/busted/test_includes_extractor_test.rb +1 -1
  128. data/test_graveyard/unit/busted/test_invoker_helper_test.rb +1 -1
  129. data/test_graveyard/unit/busted/test_invoker_test.rb +1 -1
  130. data/test_graveyard/unit/busted/tool_executor_helper_test.rb +1 -1
  131. data/test_graveyard/unit/busted/tool_executor_test.rb +1 -1
  132. data/test_graveyard/unit/busted/verbosinator_test.rb +1 -1
  133. data/test_graveyard/unit/preprocessinator_extractor_test.rb +1 -1
  134. data/vendor/c_exception/Gemfile +4 -0
  135. data/vendor/c_exception/lib/CException.h +1 -1
  136. data/vendor/c_exception/test/TestException.c +25 -14
  137. data/vendor/c_exception/test/TestException_Runner.c +74 -57
  138. data/vendor/cmock/Gemfile +11 -0
  139. data/vendor/cmock/lib/cmock_generator.rb +13 -12
  140. data/vendor/cmock/lib/cmock_generator_plugin_ignore_arg.rb +44 -0
  141. data/vendor/cmock/lib/cmock_generator_plugin_return_thru_ptr.rb +74 -0
  142. data/vendor/cmock/lib/cmock_generator_utils.rb +67 -42
  143. data/vendor/cmock/src/cmock.c +20 -30
  144. data/vendor/cmock/src/cmock.h +1 -0
  145. data/vendor/cmock/src/cmock_internals.h +43 -0
  146. data/vendor/cmock/test/c/TestCMockC.c +79 -36
  147. data/vendor/cmock/test/c/TestCMockC_Runner.c +2 -0
  148. data/vendor/cmock/test/spec/cmock_file_writer_spec.rb +21 -1
  149. data/vendor/cmock/test/spec/cmock_generator_plugin_array_spec.rb +52 -0
  150. data/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +2 -0
  151. data/vendor/cmock/test/system/test_interactions/return_thru_ptr_ignore_arg.yml +235 -0
  152. data/vendor/cmock/test/test_helper.rb +10 -5
  153. data/vendor/cmock/test/unit/cmock_generator_main_test.rb +38 -0
  154. data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_arg_test.rb +116 -0
  155. data/vendor/cmock/test/unit/cmock_generator_plugin_return_thru_ptr_test.rb +134 -0
  156. data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +58 -33
  157. data/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
  158. data/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
  159. data/vendor/cmock/vendor/c_exception/docs/license.txt +30 -0
  160. data/vendor/cmock/vendor/c_exception/docs/readme.txt +236 -0
  161. data/vendor/cmock/vendor/c_exception/lib/CException.c +39 -0
  162. data/vendor/cmock/vendor/c_exception/lib/CException.h +70 -0
  163. data/vendor/cmock/vendor/c_exception/makefile +24 -0
  164. data/vendor/cmock/vendor/c_exception/rakefile.rb +41 -0
  165. data/vendor/cmock/vendor/c_exception/release/build.info +2 -0
  166. data/vendor/cmock/vendor/c_exception/release/version.info +2 -0
  167. data/vendor/cmock/vendor/c_exception/test/CExceptionConfig.h +27 -0
  168. data/vendor/cmock/vendor/c_exception/test/TestException.c +291 -0
  169. data/vendor/cmock/vendor/c_exception/test/TestException_Runner.c +62 -0
  170. data/vendor/cmock/vendor/unity/auto/colour_prompt.rb +94 -0
  171. data/vendor/cmock/vendor/unity/auto/colour_reporter.rb +39 -0
  172. data/vendor/cmock/vendor/unity/auto/generate_config.yml +36 -0
  173. data/vendor/cmock/vendor/unity/auto/generate_module.rb +202 -0
  174. data/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +313 -0
  175. data/vendor/cmock/vendor/unity/auto/test_file_filter.rb +23 -0
  176. data/vendor/cmock/vendor/unity/auto/unity_test_summary.rb +139 -0
  177. data/vendor/cmock/vendor/unity/docs/Unity Summary.odt +0 -0
  178. data/vendor/cmock/vendor/unity/docs/Unity Summary.pdf +0 -0
  179. data/vendor/cmock/vendor/unity/docs/Unity Summary.txt +217 -0
  180. data/vendor/cmock/vendor/unity/docs/license.txt +31 -0
  181. data/vendor/cmock/vendor/unity/examples/helper/UnityHelper.c +10 -0
  182. data/vendor/cmock/vendor/unity/examples/helper/UnityHelper.h +12 -0
  183. data/vendor/cmock/vendor/unity/examples/makefile +40 -0
  184. data/vendor/cmock/vendor/unity/examples/rakefile.rb +32 -0
  185. data/vendor/cmock/vendor/unity/examples/rakefile_helper.rb +256 -0
  186. data/vendor/cmock/vendor/unity/examples/readme.txt +18 -0
  187. data/vendor/cmock/vendor/unity/examples/src/ProductionCode.c +24 -0
  188. data/vendor/cmock/vendor/unity/examples/src/ProductionCode.h +3 -0
  189. data/vendor/cmock/vendor/unity/examples/src/ProductionCode2.c +9 -0
  190. data/vendor/cmock/vendor/unity/examples/src/ProductionCode2.h +2 -0
  191. data/vendor/cmock/vendor/unity/examples/test/TestProductionCode.c +62 -0
  192. data/vendor/cmock/vendor/unity/examples/test/TestProductionCode2.c +31 -0
  193. data/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  194. data/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  195. data/vendor/{unity → cmock/vendor/unity}/extras/fixture/build/MakefileWorker.mk +0 -0
  196. data/vendor/{unity → cmock/vendor/unity}/extras/fixture/build/filterGcov.sh +0 -0
  197. data/vendor/cmock/vendor/unity/extras/fixture/rakefile.rb +37 -0
  198. data/vendor/cmock/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  199. data/vendor/cmock/vendor/unity/extras/fixture/readme.txt +9 -0
  200. data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  201. data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  202. data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  203. data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  204. data/vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  205. data/vendor/cmock/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  206. data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  207. data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  208. data/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  209. data/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  210. data/vendor/cmock/vendor/unity/makefile +35 -0
  211. data/vendor/cmock/vendor/unity/rakefile.rb +48 -0
  212. data/vendor/cmock/vendor/unity/rakefile_helper.rb +240 -0
  213. data/vendor/cmock/vendor/unity/release/build.info +2 -0
  214. data/vendor/cmock/vendor/unity/release/version.info +2 -0
  215. data/vendor/cmock/vendor/unity/src/unity.c +979 -0
  216. data/vendor/cmock/vendor/unity/src/unity.h +232 -0
  217. data/vendor/cmock/vendor/unity/src/unity_internals.h +424 -0
  218. data/vendor/cmock/vendor/unity/targets/gcc.yml +43 -0
  219. data/vendor/cmock/vendor/unity/targets/gcc_64.yml +44 -0
  220. data/vendor/cmock/vendor/unity/targets/hitech_picc18.yml +101 -0
  221. data/vendor/cmock/vendor/unity/targets/iar_arm_v4.yml +89 -0
  222. data/vendor/cmock/vendor/unity/targets/iar_arm_v5.yml +79 -0
  223. data/vendor/cmock/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  224. data/vendor/cmock/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  225. data/vendor/cmock/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  226. data/vendor/cmock/vendor/unity/targets/iar_msp430.yml +94 -0
  227. data/vendor/cmock/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  228. data/vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  229. data/vendor/cmock/vendor/unity/test/expectdata/testsample_def.c +50 -0
  230. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  231. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  232. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  233. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  234. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  235. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  236. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  237. data/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  238. data/vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  239. data/vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  240. data/vendor/cmock/vendor/unity/test/expectdata/testsample_param.c +51 -0
  241. data/vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  242. data/vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  243. data/vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  244. data/vendor/cmock/vendor/unity/test/test_generate_test_runner.rb +94 -0
  245. data/vendor/cmock/vendor/unity/test/testdata/mocksample.c +51 -0
  246. data/vendor/cmock/vendor/unity/test/testdata/sample.yml +9 -0
  247. data/vendor/cmock/vendor/unity/test/testdata/testsample.c +51 -0
  248. data/vendor/cmock/vendor/unity/test/testparameterized.c +101 -0
  249. data/vendor/cmock/vendor/unity/test/testunity.c +2024 -0
  250. data/vendor/unity/Gemfile +4 -0
  251. data/vendor/unity/auto/generate_test_runner.rb +6 -3
  252. data/vendor/unity/examples/makefile +2 -2
  253. data/vendor/unity/examples/rakefile.rb +13 -2
  254. data/vendor/unity/extras/fixture/rakefile.rb +1 -1
  255. data/vendor/unity/extras/fixture/rakefile_helper.rb +4 -3
  256. data/vendor/unity/extras/fixture/src/unity_fixture.c +15 -12
  257. data/vendor/unity/extras/fixture/src/unity_fixture.h +5 -5
  258. data/vendor/unity/extras/fixture/src/unity_fixture_internals.h +1 -1
  259. data/vendor/unity/extras/fixture/test/unity_fixture_Test.c +6 -3
  260. data/vendor/unity/makefile +2 -2
  261. data/vendor/unity/src/unity.c +183 -16
  262. data/vendor/unity/src/unity.h +18 -5
  263. data/vendor/unity/src/unity_internals.h +57 -23
  264. data/vendor/unity/targets/gcc_64.yml +45 -0
  265. data/vendor/unity/test/testunity.c +436 -28
  266. metadata +200 -137
  267. data/ceedling-0.13.0.rc4.gem +0 -0
  268. data/ceedling.sublime-project +0 -8
  269. data/ceedling.sublime-workspace +0 -365
  270. data/lib/preprocessinator_includes_handler.rb +0 -55
  271. data/tags +0 -977
  272. data/vendor/cmock/vendor/hardmock/CHANGES +0 -78
  273. data/vendor/cmock/vendor/hardmock/LICENSE +0 -7
  274. data/vendor/cmock/vendor/hardmock/README +0 -70
  275. data/vendor/cmock/vendor/hardmock/Rakefile +0 -8
  276. data/vendor/cmock/vendor/hardmock/config/environment.rb +0 -12
  277. data/vendor/cmock/vendor/hardmock/lib/assert_error.rb +0 -23
  278. data/vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb +0 -14
  279. data/vendor/cmock/vendor/hardmock/lib/hardmock.rb +0 -86
  280. data/vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb +0 -22
  281. data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb +0 -229
  282. data/vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb +0 -9
  283. data/vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb +0 -26
  284. data/vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb +0 -33
  285. data/vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb +0 -180
  286. data/vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb +0 -53
  287. data/vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb +0 -210
  288. data/vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb +0 -31
  289. data/vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb +0 -9
  290. data/vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb +0 -169
  291. data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake +0 -19
  292. data/vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb +0 -4
  293. data/vendor/cmock/vendor/hardmock/rake_tasks/test.rake +0 -22
  294. data/vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb +0 -52
  295. data/vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb +0 -178
  296. data/vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb +0 -396
  297. data/vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb +0 -434
  298. data/vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb +0 -479
  299. data/vendor/cmock/vendor/hardmock/test/test_helper.rb +0 -43
  300. data/vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb +0 -19
  301. data/vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb +0 -372
  302. data/vendor/cmock/vendor/hardmock/test/unit/expector_test.rb +0 -57
  303. data/vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb +0 -36
  304. data/vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb +0 -175
  305. data/vendor/cmock/vendor/hardmock/test/unit/mock_test.rb +0 -279
  306. data/vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb +0 -452
  307. data/vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb +0 -62
  308. data/vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb +0 -40
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ceedling
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
5
- prerelease:
4
+ version: 0.15.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Mike Karlesky, Mark VanderVoord
@@ -11,38 +10,34 @@ authors:
11
10
  autorequire:
12
11
  bindir: bin
13
12
  cert_chain: []
14
- date: 2012-10-06 00:00:00.000000000 Z
13
+ date: 2014-07-10 00:00:00.000000000 Z
15
14
  dependencies:
16
15
  - !ruby/object:Gem::Dependency
17
16
  name: thor
18
17
  requirement: !ruby/object:Gem::Requirement
19
- none: false
20
18
  requirements:
21
- - - ! '>='
19
+ - - '>='
22
20
  - !ruby/object:Gem::Version
23
21
  version: 0.14.5
24
22
  type: :runtime
25
23
  prerelease: false
26
24
  version_requirements: !ruby/object:Gem::Requirement
27
- none: false
28
25
  requirements:
29
- - - ! '>='
26
+ - - '>='
30
27
  - !ruby/object:Gem::Version
31
28
  version: 0.14.5
32
29
  - !ruby/object:Gem::Dependency
33
30
  name: rake
34
31
  requirement: !ruby/object:Gem::Requirement
35
- none: false
36
32
  requirements:
37
- - - ! '>='
33
+ - - '>='
38
34
  - !ruby/object:Gem::Version
39
35
  version: 0.8.7
40
36
  type: :runtime
41
37
  prerelease: false
42
38
  version_requirements: !ruby/object:Gem::Requirement
43
- none: false
44
39
  requirements:
45
- - - ! '>='
40
+ - - '>='
46
41
  - !ruby/object:Gem::Version
47
42
  version: 0.8.7
48
43
  description: Ceedling provides a set of tools to deploy its guts in a folder or which
@@ -57,6 +52,8 @@ files:
57
52
  - vendor/c_exception/docs/CExceptionSummary.pdf
58
53
  - vendor/c_exception/vendor/unity/docs/Unity Summary.pdf
59
54
  - vendor/cmock/docs/CMock Summary.pdf
55
+ - vendor/cmock/vendor/c_exception/docs/CExceptionSummary.pdf
56
+ - vendor/cmock/vendor/unity/docs/Unity Summary.pdf
60
57
  - vendor/unity/docs/Unity Summary.pdf
61
58
  - docs/CeedlingPacket.pdf
62
59
  - vendor/cmock/lib/cmock.rb
@@ -68,6 +65,8 @@ files:
68
65
  - vendor/cmock/lib/cmock_generator_plugin_cexception.rb
69
66
  - vendor/cmock/lib/cmock_generator_plugin_expect.rb
70
67
  - vendor/cmock/lib/cmock_generator_plugin_ignore.rb
68
+ - vendor/cmock/lib/cmock_generator_plugin_ignore_arg.rb
69
+ - vendor/cmock/lib/cmock_generator_plugin_return_thru_ptr.rb
71
70
  - vendor/cmock/lib/cmock_generator_utils.rb
72
71
  - vendor/cmock/lib/cmock_header_parser.rb
73
72
  - vendor/cmock/lib/cmock_plugin_manager.rb
@@ -78,6 +77,7 @@ files:
78
77
  - vendor/cmock/release/version.info
79
78
  - vendor/cmock/src/cmock.c
80
79
  - vendor/cmock/src/cmock.h
80
+ - vendor/cmock/src/cmock_internals.h
81
81
  - vendor/c_exception/lib/CException.c
82
82
  - vendor/c_exception/lib/CException.h
83
83
  - vendor/c_exception/release/build.info
@@ -101,10 +101,7 @@ files:
101
101
  - assets/rakefile_with_guts.rb
102
102
  - assets/test_example_file.c
103
103
  - bin/ceedling
104
- - ceedling-0.13.0.rc4.gem
105
104
  - ceedling.gemspec
106
- - ceedling.sublime-project
107
- - ceedling.sublime-workspace
108
105
  - config/test_environment.rb
109
106
  - docs/CeedlingLogo.png
110
107
  - docs/CeedlingPacket.md
@@ -198,85 +195,86 @@ files:
198
195
  - examples/temp_sensor/test/TestUsartModel.c
199
196
  - Gemfile
200
197
  - Gemfile.lock
201
- - lib/build_invoker_utils.rb
202
- - lib/cacheinator.rb
203
- - lib/cacheinator_helper.rb
198
+ - lib/ceedling/build_invoker_utils.rb
199
+ - lib/ceedling/cacheinator.rb
200
+ - lib/ceedling/cacheinator_helper.rb
201
+ - lib/ceedling/cmock_builder.rb
202
+ - lib/ceedling/configurator.rb
203
+ - lib/ceedling/configurator_builder.rb
204
+ - lib/ceedling/configurator_plugins.rb
205
+ - lib/ceedling/configurator_setup.rb
206
+ - lib/ceedling/configurator_validator.rb
207
+ - lib/ceedling/constants.rb
208
+ - lib/ceedling/defaults.rb
209
+ - lib/ceedling/dependinator.rb
210
+ - lib/ceedling/erb_wrapper.rb
211
+ - lib/ceedling/file_finder.rb
212
+ - lib/ceedling/file_finder_helper.rb
213
+ - lib/ceedling/file_path_utils.rb
214
+ - lib/ceedling/file_system_utils.rb
215
+ - lib/ceedling/file_system_wrapper.rb
216
+ - lib/ceedling/file_wrapper.rb
217
+ - lib/ceedling/flaginator.rb
218
+ - lib/ceedling/generator.rb
219
+ - lib/ceedling/generator_helper.rb
220
+ - lib/ceedling/generator_test_results.rb
221
+ - lib/ceedling/generator_test_results_sanity_checker.rb
222
+ - lib/ceedling/generator_test_runner.rb
223
+ - lib/ceedling/loginator.rb
224
+ - lib/ceedling/makefile.rb
225
+ - lib/ceedling/objects.yml
226
+ - lib/ceedling/par_map.rb
227
+ - lib/ceedling/plugin.rb
228
+ - lib/ceedling/plugin_builder.rb
229
+ - lib/ceedling/plugin_manager.rb
230
+ - lib/ceedling/plugin_manager_helper.rb
231
+ - lib/ceedling/plugin_reportinator.rb
232
+ - lib/ceedling/plugin_reportinator_helper.rb
233
+ - lib/ceedling/preprocessinator.rb
234
+ - lib/ceedling/preprocessinator_extractor.rb
235
+ - lib/ceedling/preprocessinator_file_handler.rb
236
+ - lib/ceedling/preprocessinator_helper.rb
237
+ - lib/ceedling/preprocessinator_includes_handler.rb
238
+ - lib/ceedling/project_config_manager.rb
239
+ - lib/ceedling/project_file_loader.rb
240
+ - lib/ceedling/rake_utils.rb
241
+ - lib/ceedling/rake_wrapper.rb
242
+ - lib/ceedling/rakefile.rb
243
+ - lib/ceedling/release_invoker.rb
244
+ - lib/ceedling/release_invoker_helper.rb
245
+ - lib/ceedling/reportinator.rb
246
+ - lib/ceedling/rules_cmock.rake
247
+ - lib/ceedling/rules_preprocess.rake
248
+ - lib/ceedling/rules_release.rake
249
+ - lib/ceedling/rules_release_deep_dependencies.rake
250
+ - lib/ceedling/rules_tests.rake
251
+ - lib/ceedling/rules_tests_deep_dependencies.rake
252
+ - lib/ceedling/setupinator.rb
253
+ - lib/ceedling/stream_wrapper.rb
254
+ - lib/ceedling/streaminator.rb
255
+ - lib/ceedling/streaminator_helper.rb
256
+ - lib/ceedling/system_utils.rb
257
+ - lib/ceedling/system_wrapper.rb
258
+ - lib/ceedling/target_loader.rb
259
+ - lib/ceedling/task_invoker.rb
260
+ - lib/ceedling/tasks_base.rake
261
+ - lib/ceedling/tasks_filesystem.rake
262
+ - lib/ceedling/tasks_release.rake
263
+ - lib/ceedling/tasks_release_deep_dependencies.rake
264
+ - lib/ceedling/tasks_tests.rake
265
+ - lib/ceedling/tasks_tests_deep_dependencies.rake
266
+ - lib/ceedling/tasks_vendor.rake
267
+ - lib/ceedling/test_includes_extractor.rb
268
+ - lib/ceedling/test_invoker.rb
269
+ - lib/ceedling/test_invoker_helper.rb
270
+ - lib/ceedling/tool_executor.rb
271
+ - lib/ceedling/tool_executor_helper.rb
272
+ - lib/ceedling/verbosinator.rb
204
273
  - lib/ceedling/version.rb
205
274
  - lib/ceedling/version.rb.erb
275
+ - lib/ceedling/yaml_wrapper.rb
206
276
  - lib/ceedling.rb
207
- - lib/cmock_builder.rb
208
- - lib/configurator.rb
209
- - lib/configurator_builder.rb
210
- - lib/configurator_plugins.rb
211
- - lib/configurator_setup.rb
212
- - lib/configurator_validator.rb
213
- - lib/constants.rb
214
- - lib/defaults.rb
215
- - lib/dependinator.rb
216
- - lib/erb_wrapper.rb
217
- - lib/file_finder.rb
218
- - lib/file_finder_helper.rb
219
- - lib/file_path_utils.rb
220
- - lib/file_system_utils.rb
221
- - lib/file_system_wrapper.rb
222
- - lib/file_wrapper.rb
223
- - lib/flaginator.rb
224
- - lib/generator.rb
225
- - lib/generator_helper.rb
226
- - lib/generator_test_results.rb
227
- - lib/generator_test_results_sanity_checker.rb
228
- - lib/generator_test_runner.rb
229
- - lib/loginator.rb
230
- - lib/makefile.rb
231
- - lib/objects.yml
232
- - lib/par_map.rb
233
- - lib/plugin.rb
234
- - lib/plugin_builder.rb
235
- - lib/plugin_manager.rb
236
- - lib/plugin_manager_helper.rb
237
- - lib/plugin_reportinator.rb
238
- - lib/plugin_reportinator_helper.rb
239
- - lib/preprocessinator.rb
240
- - lib/preprocessinator_extractor.rb
241
- - lib/preprocessinator_file_handler.rb
242
- - lib/preprocessinator_helper.rb
243
- - lib/preprocessinator_includes_handler.rb
244
- - lib/project_config_manager.rb
245
- - lib/project_file_loader.rb
246
- - lib/rake_utils.rb
247
- - lib/rake_wrapper.rb
248
- - lib/rakefile.rb
249
- - lib/release_invoker.rb
250
- - lib/release_invoker_helper.rb
251
- - lib/reportinator.rb
252
- - lib/rules_cmock.rake
253
- - lib/rules_preprocess.rake
254
- - lib/rules_release.rake
255
- - lib/rules_release_deep_dependencies.rake
256
- - lib/rules_tests.rake
257
- - lib/rules_tests_deep_dependencies.rake
258
- - lib/setupinator.rb
259
- - lib/stream_wrapper.rb
260
- - lib/streaminator.rb
261
- - lib/streaminator_helper.rb
262
- - lib/system_utils.rb
263
- - lib/system_wrapper.rb
264
- - lib/target_loader.rb
265
- - lib/task_invoker.rb
266
- - lib/tasks_base.rake
267
- - lib/tasks_filesystem.rake
268
- - lib/tasks_release.rake
269
- - lib/tasks_release_deep_dependencies.rake
270
- - lib/tasks_tests.rake
271
- - lib/tasks_tests_deep_dependencies.rake
272
- - lib/tasks_vendor.rake
273
- - lib/test_includes_extractor.rb
274
- - lib/test_invoker.rb
275
- - lib/test_invoker_helper.rb
276
- - lib/tool_executor.rb
277
- - lib/tool_executor_helper.rb
278
- - lib/verbosinator.rb
279
- - lib/yaml_wrapper.rb
277
+ - license.txt
280
278
  - plugins/bullseye/assets/template.erb
281
279
  - plugins/bullseye/bullseye.rake
282
280
  - plugins/bullseye/config/defaults.yml
@@ -295,22 +293,25 @@ files:
295
293
  - plugins/stdout_pretty_tests_report/assets/template.erb
296
294
  - plugins/stdout_pretty_tests_report/config/stdout_pretty_tests_report.yml
297
295
  - plugins/stdout_pretty_tests_report/lib/stdout_pretty_tests_report.rb
296
+ - plugins/teamcity_tests_report/config/teamcity_tests_report.yml
297
+ - plugins/teamcity_tests_report/lib/teamcity_tests_report.rb
298
298
  - plugins/warnings_report/warnings_report.rb
299
299
  - plugins/xml_tests_report/xml_tests_report.rb
300
300
  - rakefile.rb
301
301
  - README.md
302
302
  - release/build.info
303
303
  - release/version.info
304
+ - spec/ceedling_spec.rb
304
305
  - spec/configurator_builder_spec.rb
305
306
  - spec/configurator_helper_spec.rb
306
307
  - spec/configurator_spec.rb
307
308
  - spec/par_map_spec.rb
308
309
  - spec/preprocessinator_extractor_spec.rb
310
+ - spec/preprocessinator_includes_handler_spec.rb
309
311
  - spec/spec_helper.rb
310
312
  - spec/spec_system_helper.rb
311
313
  - spec/system/deployment_spec.rb
312
314
  - spec/uncatagorized_specs_spec.rb
313
- - tags
314
315
  - test_graveyard/integration/paths.yml
315
316
  - test_graveyard/integration/paths_test.rb
316
317
  - test_graveyard/integration/rake_rules_aux_dependencies_test.rb
@@ -391,6 +392,7 @@ files:
391
392
  - vendor/c_exception/docs/CExceptionSummary.odt
392
393
  - vendor/c_exception/docs/license.txt
393
394
  - vendor/c_exception/docs/readme.txt
395
+ - vendor/c_exception/Gemfile
394
396
  - vendor/c_exception/makefile
395
397
  - vendor/c_exception/rakefile.rb
396
398
  - vendor/c_exception/test/CExceptionConfig.h
@@ -560,6 +562,7 @@ files:
560
562
  - vendor/cmock/examples/test/TestUsartModel.c
561
563
  - vendor/cmock/examples/test/TestUsartPutChar.c
562
564
  - vendor/cmock/examples/test/TestUsartTransmitBufferStatus.c
565
+ - vendor/cmock/Gemfile
563
566
  - vendor/cmock/iar/iar_v4/cmock_demo.dep
564
567
  - vendor/cmock/iar/iar_v4/cmock_demo.ewd
565
568
  - vendor/cmock/iar/iar_v4/cmock_demo.ewp
@@ -622,6 +625,7 @@ files:
622
625
  - vendor/cmock/test/c/TestCMockCDynamic.yml
623
626
  - vendor/cmock/test/c/TestCMockCDynamic_Runner.c
624
627
  - vendor/cmock/test/spec/cmock_file_writer_spec.rb
628
+ - vendor/cmock/test/spec/cmock_generator_plugin_array_spec.rb
625
629
  - vendor/cmock/test/spec/spec_helper.rb
626
630
  - vendor/cmock/test/system/systest_generator.rb
627
631
  - vendor/cmock/test/system/test_compilation/callingconv.h
@@ -645,6 +649,7 @@ files:
645
649
  - vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml
646
650
  - vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml
647
651
  - vendor/cmock/test/system/test_interactions/parsing_challenges.yml
652
+ - vendor/cmock/test/system/test_interactions/return_thru_ptr_ignore_arg.yml
648
653
  - vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml
649
654
  - vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml
650
655
  - vendor/cmock/test/system/test_interactions/unity_64bit_support.yml
@@ -658,7 +663,9 @@ files:
658
663
  - vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb
659
664
  - vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb
660
665
  - vendor/cmock/test/unit/cmock_generator_plugin_expect_test.rb
666
+ - vendor/cmock/test/unit/cmock_generator_plugin_ignore_arg_test.rb
661
667
  - vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb
668
+ - vendor/cmock/test/unit/cmock_generator_plugin_return_thru_ptr_test.rb
662
669
  - vendor/cmock/test/unit/cmock_generator_utils_test.rb
663
670
  - vendor/cmock/test/unit/cmock_header_parser_test.rb
664
671
  - vendor/cmock/test/unit/cmock_plugin_manager_test.rb
@@ -672,43 +679,97 @@ files:
672
679
  - vendor/cmock/vendor/behaviors/test/tasks_test/lib/user.rb
673
680
  - vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile
674
681
  - vendor/cmock/vendor/behaviors/test/tasks_test/test/user_test.rb
675
- - vendor/cmock/vendor/hardmock/CHANGES
676
- - vendor/cmock/vendor/hardmock/config/environment.rb
677
- - vendor/cmock/vendor/hardmock/lib/assert_error.rb
678
- - vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb
679
- - vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb
680
- - vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb
681
- - vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb
682
- - vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb
683
- - vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb
684
- - vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb
685
- - vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb
686
- - vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb
687
- - vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb
688
- - vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb
689
- - vendor/cmock/vendor/hardmock/lib/hardmock.rb
690
- - vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb
691
- - vendor/cmock/vendor/hardmock/LICENSE
692
- - vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake
693
- - vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb
694
- - vendor/cmock/vendor/hardmock/rake_tasks/test.rake
695
- - vendor/cmock/vendor/hardmock/Rakefile
696
- - vendor/cmock/vendor/hardmock/README
697
- - vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb
698
- - vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb
699
- - vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb
700
- - vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb
701
- - vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb
702
- - vendor/cmock/vendor/hardmock/test/test_helper.rb
703
- - vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb
704
- - vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb
705
- - vendor/cmock/vendor/hardmock/test/unit/expector_test.rb
706
- - vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb
707
- - vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb
708
- - vendor/cmock/vendor/hardmock/test/unit/mock_test.rb
709
- - vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb
710
- - vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb
711
- - vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb
682
+ - vendor/cmock/vendor/c_exception/docs/CExceptionSummary.odt
683
+ - vendor/cmock/vendor/c_exception/docs/license.txt
684
+ - vendor/cmock/vendor/c_exception/docs/readme.txt
685
+ - vendor/cmock/vendor/c_exception/lib/CException.c
686
+ - vendor/cmock/vendor/c_exception/lib/CException.h
687
+ - vendor/cmock/vendor/c_exception/makefile
688
+ - vendor/cmock/vendor/c_exception/rakefile.rb
689
+ - vendor/cmock/vendor/c_exception/release/build.info
690
+ - vendor/cmock/vendor/c_exception/release/version.info
691
+ - vendor/cmock/vendor/c_exception/test/CExceptionConfig.h
692
+ - vendor/cmock/vendor/c_exception/test/TestException.c
693
+ - vendor/cmock/vendor/c_exception/test/TestException_Runner.c
694
+ - vendor/cmock/vendor/unity/auto/colour_prompt.rb
695
+ - vendor/cmock/vendor/unity/auto/colour_reporter.rb
696
+ - vendor/cmock/vendor/unity/auto/generate_config.yml
697
+ - vendor/cmock/vendor/unity/auto/generate_module.rb
698
+ - vendor/cmock/vendor/unity/auto/generate_test_runner.rb
699
+ - vendor/cmock/vendor/unity/auto/test_file_filter.rb
700
+ - vendor/cmock/vendor/unity/auto/unity_test_summary.rb
701
+ - vendor/cmock/vendor/unity/docs/license.txt
702
+ - vendor/cmock/vendor/unity/docs/Unity Summary.odt
703
+ - vendor/cmock/vendor/unity/docs/Unity Summary.txt
704
+ - vendor/cmock/vendor/unity/examples/helper/UnityHelper.c
705
+ - vendor/cmock/vendor/unity/examples/helper/UnityHelper.h
706
+ - vendor/cmock/vendor/unity/examples/makefile
707
+ - vendor/cmock/vendor/unity/examples/rakefile.rb
708
+ - vendor/cmock/vendor/unity/examples/rakefile_helper.rb
709
+ - vendor/cmock/vendor/unity/examples/readme.txt
710
+ - vendor/cmock/vendor/unity/examples/src/ProductionCode.c
711
+ - vendor/cmock/vendor/unity/examples/src/ProductionCode.h
712
+ - vendor/cmock/vendor/unity/examples/src/ProductionCode2.c
713
+ - vendor/cmock/vendor/unity/examples/src/ProductionCode2.h
714
+ - vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c
715
+ - vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c
716
+ - vendor/cmock/vendor/unity/examples/test/TestProductionCode.c
717
+ - vendor/cmock/vendor/unity/examples/test/TestProductionCode2.c
718
+ - vendor/cmock/vendor/unity/extras/fixture/build/filterGcov.sh
719
+ - vendor/cmock/vendor/unity/extras/fixture/build/MakefileWorker.mk
720
+ - vendor/cmock/vendor/unity/extras/fixture/rakefile.rb
721
+ - vendor/cmock/vendor/unity/extras/fixture/rakefile_helper.rb
722
+ - vendor/cmock/vendor/unity/extras/fixture/readme.txt
723
+ - vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c
724
+ - vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h
725
+ - vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h
726
+ - vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h
727
+ - vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c
728
+ - vendor/cmock/vendor/unity/extras/fixture/test/testunity_fixture.c
729
+ - vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c
730
+ - vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c
731
+ - vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.c
732
+ - vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.h
733
+ - vendor/cmock/vendor/unity/makefile
734
+ - vendor/cmock/vendor/unity/rakefile.rb
735
+ - vendor/cmock/vendor/unity/rakefile_helper.rb
736
+ - vendor/cmock/vendor/unity/release/build.info
737
+ - vendor/cmock/vendor/unity/release/version.info
738
+ - vendor/cmock/vendor/unity/src/unity.c
739
+ - vendor/cmock/vendor/unity/src/unity.h
740
+ - vendor/cmock/vendor/unity/src/unity_internals.h
741
+ - vendor/cmock/vendor/unity/targets/gcc.yml
742
+ - vendor/cmock/vendor/unity/targets/gcc_64.yml
743
+ - vendor/cmock/vendor/unity/targets/hitech_picc18.yml
744
+ - vendor/cmock/vendor/unity/targets/iar_arm_v4.yml
745
+ - vendor/cmock/vendor/unity/targets/iar_arm_v5.yml
746
+ - vendor/cmock/vendor/unity/targets/iar_arm_v5_3.yml
747
+ - vendor/cmock/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml
748
+ - vendor/cmock/vendor/unity/targets/iar_cortexm3_v5.yml
749
+ - vendor/cmock/vendor/unity/targets/iar_msp430.yml
750
+ - vendor/cmock/vendor/unity/targets/iar_sh2a_v6.yml
751
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c
752
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_def.c
753
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c
754
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c
755
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c
756
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c
757
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c
758
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c
759
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c
760
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c
761
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c
762
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c
763
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_param.c
764
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c
765
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c
766
+ - vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c
767
+ - vendor/cmock/vendor/unity/test/test_generate_test_runner.rb
768
+ - vendor/cmock/vendor/unity/test/testdata/mocksample.c
769
+ - vendor/cmock/vendor/unity/test/testdata/sample.yml
770
+ - vendor/cmock/vendor/unity/test/testdata/testsample.c
771
+ - vendor/cmock/vendor/unity/test/testparameterized.c
772
+ - vendor/cmock/vendor/unity/test/testunity.c
712
773
  - vendor/constructor/History.rdoc
713
774
  - vendor/constructor/homepage/index.erb
714
775
  - vendor/constructor/homepage/index.html
@@ -874,8 +935,6 @@ files:
874
935
  - vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c
875
936
  - vendor/unity/examples/test/TestProductionCode.c
876
937
  - vendor/unity/examples/test/TestProductionCode2.c
877
- - vendor/unity/extras/fixture/build/filterGcov.sh
878
- - vendor/unity/extras/fixture/build/MakefileWorker.mk
879
938
  - vendor/unity/extras/fixture/rakefile.rb
880
939
  - vendor/unity/extras/fixture/rakefile_helper.rb
881
940
  - vendor/unity/extras/fixture/readme.txt
@@ -889,10 +948,12 @@ files:
889
948
  - vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c
890
949
  - vendor/unity/extras/fixture/test/unity_output_Spy.c
891
950
  - vendor/unity/extras/fixture/test/unity_output_Spy.h
951
+ - vendor/unity/Gemfile
892
952
  - vendor/unity/makefile
893
953
  - vendor/unity/rakefile.rb
894
954
  - vendor/unity/rakefile_helper.rb
895
955
  - vendor/unity/targets/gcc_32.yml
956
+ - vendor/unity/targets/gcc_64.yml
896
957
  - vendor/unity/targets/hitech_picc18.yml
897
958
  - vendor/unity/targets/iar_arm_v4.yml
898
959
  - vendor/unity/targets/iar_arm_v5.yml
@@ -924,37 +985,39 @@ files:
924
985
  - vendor/unity/test/testparameterized.c
925
986
  - vendor/unity/test/testunity.c
926
987
  homepage: http://throwtheswitch.org/
927
- licenses: []
988
+ licenses:
989
+ - MIT
990
+ metadata: {}
928
991
  post_install_message:
929
992
  rdoc_options: []
930
993
  require_paths:
931
994
  - lib
932
995
  - vendor/cmock/lib
933
996
  required_ruby_version: !ruby/object:Gem::Requirement
934
- none: false
935
997
  requirements:
936
- - - ! '>='
998
+ - - '>='
937
999
  - !ruby/object:Gem::Version
938
1000
  version: '0'
939
1001
  required_rubygems_version: !ruby/object:Gem::Requirement
940
- none: false
941
1002
  requirements:
942
- - - ! '>='
1003
+ - - '>='
943
1004
  - !ruby/object:Gem::Version
944
1005
  version: '0'
945
1006
  requirements: []
946
1007
  rubyforge_project: ceedling
947
- rubygems_version: 1.8.24
1008
+ rubygems_version: 2.0.14
948
1009
  signing_key:
949
- specification_version: 3
1010
+ specification_version: 4
950
1011
  summary: Ceedling is a set of tools for the automation of builds and test running
951
1012
  for C
952
1013
  test_files:
1014
+ - spec/ceedling_spec.rb
953
1015
  - spec/configurator_builder_spec.rb
954
1016
  - spec/configurator_helper_spec.rb
955
1017
  - spec/configurator_spec.rb
956
1018
  - spec/par_map_spec.rb
957
1019
  - spec/preprocessinator_extractor_spec.rb
1020
+ - spec/preprocessinator_includes_handler_spec.rb
958
1021
  - spec/spec_helper.rb
959
1022
  - spec/spec_system_helper.rb
960
1023
  - spec/system/deployment_spec.rb