├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .rubocop.yml ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── assets ├── ceedling ├── ceedling.cmd ├── default_gitignore ├── example_file.c ├── example_file.h ├── example_file_call.c ├── example_file_call.h ├── project.yml ├── test_example_file.c ├── test_example_file_boom.c ├── test_example_file_crash.c ├── test_example_file_success.c ├── test_example_file_unity_printf.c ├── test_example_file_verbose.c ├── test_example_file_with_mock.c ├── test_example_with_parameterized_tests.c ├── tests_with_defines │ ├── src │ │ ├── adc_hardware.c │ │ ├── adc_hardware.h │ │ ├── adc_hardware_configurator.c │ │ └── adc_hardware_configurator.h │ └── test │ │ ├── test_adc_hardware.c │ │ └── test_adc_hardware_special.c ├── tests_with_preprocessing │ ├── src │ │ ├── adc_hardwareA.c │ │ ├── adc_hardwareA.h │ │ ├── adc_hardwareB.c │ │ ├── adc_hardwareB.h │ │ ├── adc_hardwareC.c │ │ ├── adc_hardwareC.h │ │ ├── adc_hardware_configuratorA.h │ │ ├── adc_hardware_configuratorB.h │ │ └── adc_hardware_configuratorC.h │ └── test │ │ ├── test_adc_hardwareA.c │ │ ├── test_adc_hardwareB.c │ │ └── test_adc_hardwareC.c └── uncovered_example_file.c ├── bin ├── actions_wrapper.rb ├── app_cfg.rb ├── ceedling ├── cli.rb ├── cli_handler.rb ├── cli_helper.rb ├── configinator.rb ├── mixinator.rb ├── mixins.rb ├── objects.yml ├── path_validator.rb ├── projectinator.rb └── versionator.rb ├── ceedling.gemspec ├── config └── test_environment.rb ├── docs ├── BreakingChanges.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Ceedling Basic Porting.pdf ├── Ceedling Managing Release Code.pdf ├── Ceedling Working with IDEs.pdf ├── CeedlingPacket.md ├── CeedlingPullRequestChecklist.md ├── CeedlingUpgrade.md ├── Changelog.md ├── PluginDevelopmentGuide.md ├── ReleaseNotes.md ├── SECURITY.md └── ThrowTheSwitchCodingStandard.md ├── examples └── temp_sensor │ ├── README.md │ ├── mixin │ ├── add_gcov.yml │ └── add_unity_helper.yml │ ├── project.yml │ ├── src │ ├── AdcConductor.c │ ├── AdcConductor.h │ ├── AdcHardware.c │ ├── AdcHardware.h │ ├── AdcHardwareConfigurator.c │ ├── AdcHardwareConfigurator.h │ ├── AdcModel.c │ ├── AdcModel.h │ ├── AdcTemperatureSensor.c │ ├── AdcTemperatureSensor.h │ ├── Executor.c │ ├── Executor.h │ ├── IntrinsicsWrapper.c │ ├── IntrinsicsWrapper.h │ ├── Main.c │ ├── Main.h │ ├── Model.c │ ├── Model.h │ ├── ModelConfig.h │ ├── TaskScheduler.c │ ├── TaskScheduler.h │ ├── TemperatureFilter.c │ ├── TemperatureFilter.h │ ├── TimerConductor.c │ ├── TimerConductor.h │ ├── TimerConfigurator.c │ ├── TimerConfigurator.h │ ├── TimerHardware.c │ ├── TimerHardware.h │ ├── TimerInterruptConfigurator.c │ ├── TimerInterruptConfigurator.h │ ├── TimerInterruptHandler.c │ ├── TimerInterruptHandler.h │ ├── TimerModel.c │ ├── TimerModel.h │ ├── Types.h │ ├── UsartConductor.c │ ├── UsartConductor.h │ ├── UsartConfigurator.c │ ├── UsartConfigurator.h │ ├── UsartHardware.c │ ├── UsartHardware.h │ ├── UsartModel.c │ ├── UsartModel.h │ ├── UsartPutChar.c │ ├── UsartPutChar.h │ ├── UsartTransmitBufferStatus.c │ ├── UsartTransmitBufferStatus.h │ └── calculators │ │ ├── TemperatureCalculator.c │ │ ├── TemperatureCalculator.h │ │ ├── UsartBaudRateRegisterCalculator.c │ │ └── UsartBaudRateRegisterCalculator.h │ └── test │ ├── TestExecutor.c │ ├── TestMain.c │ ├── TestModel.c │ ├── TestTaskScheduler.c │ ├── TestTemperatureCalculator.c │ ├── TestTemperatureFilter.c │ ├── TestTimerConductor.c │ ├── TestTimerHardware.c │ ├── TestTimerIntegrated.c │ ├── TestTimerModel.c │ ├── TestUsartBaudRateRegisterCalculator.c │ ├── TestUsartConductor.c │ ├── TestUsartHardware.c │ ├── TestUsartIntegrated.c │ ├── TestUsartModel.c │ ├── adc │ ├── TestAdcConductor.c │ ├── TestAdcHardware.c │ └── TestAdcModel.c │ └── support │ ├── UnityHelper.c │ └── UnityHelper.h ├── lib ├── ceedling.rb ├── ceedling │ ├── application.rb │ ├── backtrace.gdb │ ├── build_batchinator.rb │ ├── cacheinator.rb │ ├── cacheinator_helper.rb │ ├── config_matchinator.rb │ ├── config_walkinator.rb │ ├── configurator.rb │ ├── configurator_builder.rb │ ├── configurator_plugins.rb │ ├── configurator_setup.rb │ ├── configurator_validator.rb │ ├── constants.rb │ ├── defaults.rb │ ├── defineinator.rb │ ├── dependinator.rb │ ├── encodinator.rb │ ├── erb_wrapper.rb │ ├── exceptions.rb │ ├── file_finder.rb │ ├── file_finder_helper.rb │ ├── file_path_collection_utils.rb │ ├── file_path_utils.rb │ ├── file_system_wrapper.rb │ ├── file_wrapper.rb │ ├── flaginator.rb │ ├── generator.rb │ ├── generator_helper.rb │ ├── generator_mocks.rb │ ├── generator_test_results.rb │ ├── generator_test_results_backtrace.rb │ ├── generator_test_results_sanity_checker.rb │ ├── generator_test_runner.rb │ ├── include_pathinator.rb │ ├── loginator.rb │ ├── makefile.rb │ ├── objects.yml │ ├── parsing_parcels.rb │ ├── plugin.rb │ ├── plugin_manager.rb │ ├── plugin_manager_helper.rb │ ├── plugin_reportinator.rb │ ├── plugin_reportinator_helper.rb │ ├── preprocessinator.rb │ ├── preprocessinator_extractor.rb │ ├── preprocessinator_file_handler.rb │ ├── preprocessinator_includes_handler.rb │ ├── rake_utils.rb │ ├── rake_wrapper.rb │ ├── rakefile.rb │ ├── release_invoker.rb │ ├── release_invoker_helper.rb │ ├── reportinator.rb │ ├── rules_release.rake │ ├── rules_tests.rake │ ├── setupinator.rb │ ├── stream_wrapper.rb │ ├── system_utils.rb │ ├── system_wrapper.rb │ ├── task_invoker.rb │ ├── tasks_base.rake │ ├── tasks_filesystem.rake │ ├── tasks_release.rake │ ├── tasks_tests.rake │ ├── test_context_extractor.rb │ ├── test_invoker.rb │ ├── test_invoker_helper.rb │ ├── test_runner_manager.rb │ ├── tool_executor.rb │ ├── tool_executor_helper.rb │ ├── tool_validator.rb │ ├── verbosinator.rb │ └── yaml_wrapper.rb └── version.rb ├── license.txt ├── plugins ├── beep │ ├── README.md │ ├── config │ │ ├── defaults.yml │ │ └── defaults_beep.rb │ └── lib │ │ └── beep.rb ├── bullseye │ ├── README.md │ ├── assets │ │ └── template.erb │ ├── bullseye.rake │ ├── config │ │ └── defaults.yml │ └── lib │ │ └── bullseye.rb ├── command_hooks │ ├── README.md │ └── lib │ │ └── command_hooks.rb ├── compile_commands_json_db │ ├── README.md │ └── lib │ │ └── compile_commands_json_db.rb ├── dependencies │ ├── README.md │ ├── Rakefile │ ├── config │ │ └── defaults.yml │ ├── dependencies.rake │ ├── example │ │ ├── boss │ │ │ ├── project.yml │ │ │ ├── src │ │ │ │ ├── boss.c │ │ │ │ ├── boss.h │ │ │ │ └── main.c │ │ │ └── test │ │ │ │ └── test_boss.c │ │ ├── supervisor │ │ │ ├── project.yml │ │ │ ├── src │ │ │ │ ├── supervisor.c │ │ │ │ └── supervisor.h │ │ │ └── test │ │ │ │ └── test_supervisor.c │ │ ├── version.tar.gzip │ │ └── workerbees.zip │ └── lib │ │ └── dependencies.rb ├── fff │ ├── README.md │ ├── Rakefile │ ├── config │ │ └── fff.yml │ ├── examples │ │ └── fff_example │ │ │ ├── build │ │ │ └── .gitignore │ │ │ ├── project.yml │ │ │ ├── src │ │ │ ├── bar.c │ │ │ ├── bar.h │ │ │ ├── custom_types.h │ │ │ ├── display.c │ │ │ ├── display.h │ │ │ ├── event_processor.c │ │ │ ├── event_processor.h │ │ │ ├── foo.c │ │ │ ├── foo.h │ │ │ └── subfolder │ │ │ │ ├── zzz.c │ │ │ │ └── zzz.h │ │ │ └── test │ │ │ ├── test_event_processor.c │ │ │ └── test_foo.c │ ├── lib │ │ ├── fff.rb │ │ └── fff_mock_generator.rb │ ├── spec │ │ ├── fff_mock_header_generator_spec.rb │ │ ├── fff_mock_source_generator_spec.rb │ │ ├── header_generator.rb │ │ └── spec_helper.rb │ ├── src │ │ └── fff_unity_helper.h │ └── vendor │ │ └── fff │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── buildandtest │ │ ├── examples │ │ ├── Makefile │ │ ├── driver_testing │ │ │ ├── Makefile │ │ │ ├── driver.c │ │ │ ├── driver.h │ │ │ ├── driver.test.cpp │ │ │ ├── driver.test.fff.cpp │ │ │ ├── hardware_abstraction.h │ │ │ └── registers.h │ │ └── embedded_ui │ │ │ ├── DISPLAY.h │ │ │ ├── Kata.txt │ │ │ ├── Makefile │ │ │ ├── SYSTEM.h │ │ │ ├── UI.c │ │ │ ├── UI.h │ │ │ ├── UI_test_ansic.c │ │ │ ├── UI_test_cpp.cpp │ │ │ └── test_suite_template.c │ │ ├── fakegen.rb │ │ ├── fff.h │ │ ├── gtest │ │ ├── Makefile │ │ ├── gtest-all.cc │ │ ├── gtest-main.cc │ │ └── gtest.h │ │ └── test │ │ ├── Makefile │ │ ├── c_test_framework.h │ │ ├── fff_test_c.c │ │ ├── fff_test_cpp.cpp │ │ ├── fff_test_global_c.c │ │ ├── fff_test_global_cpp.cpp │ │ ├── global_fakes.c │ │ ├── global_fakes.h │ │ └── test_cases.include ├── gcov │ ├── README.md │ ├── config │ │ ├── defaults.yml │ │ └── defaults_gcov.rb │ ├── gcov.rake │ └── lib │ │ ├── gcov.rb │ │ ├── gcov_constants.rb │ │ ├── gcovr_reportinator.rb │ │ ├── reportgenerator_reportinator.rb │ │ └── reportinator_helper.rb ├── module_generator │ ├── README.md │ ├── Rakefile │ ├── assets │ │ ├── stubby1.h │ │ └── stubby2.h │ ├── config │ │ └── module_generator.yml │ ├── example │ │ └── project.yml │ ├── lib │ │ └── module_generator.rb │ └── module_generator.rake ├── report_build_warnings_log │ ├── README.md │ ├── config │ │ └── defaults.yml │ └── lib │ │ └── report_build_warnings_log.rb ├── report_tests_gtestlike_stdout │ ├── README.md │ ├── assets │ │ └── template.erb │ ├── config │ │ └── report_tests_gtestlike_stdout.yml │ └── lib │ │ └── report_tests_gtestlike_stdout.rb ├── report_tests_ide_stdout │ ├── README.md │ ├── config │ │ └── report_tests_ide_stdout.yml │ └── lib │ │ └── report_tests_ide_stdout.rb ├── report_tests_log_factory │ ├── README.md │ ├── config │ │ └── defaults.yml │ ├── lib │ │ ├── cppunit_tests_reporter.rb │ │ ├── html_tests_reporter.rb │ │ ├── json_tests_reporter.rb │ │ ├── junit_tests_reporter.rb │ │ ├── report_tests_log_factory.rb │ │ └── tests_reporter.rb │ └── sample_html_report.png ├── report_tests_pretty_stdout │ ├── README.md │ ├── assets │ │ └── template.erb │ ├── config │ │ └── report_tests_pretty_stdout.yml │ └── lib │ │ └── report_tests_pretty_stdout.rb ├── report_tests_raw_output_log │ ├── README.md │ └── lib │ │ └── report_tests_raw_output_log.rb └── report_tests_teamcity_stdout │ ├── README.md │ ├── config │ ├── defaults.yml │ └── report_tests_teamcity_stdout.yml │ └── lib │ └── report_tests_teamcity_stdout.rb ├── spec ├── config_walkinator_spec.rb ├── configurator_builder_spec.rb ├── configurator_helper_spec.rb ├── configurator_spec.rb ├── file_finder_helper_spec.rb ├── gcov │ ├── gcov_deployment_spec.rb │ └── gcov_test_cases_spec.rb ├── generator_test_results_sanity_checker_spec.rb ├── generator_test_results_spec.rb ├── manual │ └── stress_test.rb ├── parsing_parcels_spec.rb ├── preprocessinator_extractor_spec.rb ├── preprocessinator_includes_handler_spec.rb ├── reportinator_spec.rb ├── spec_helper.rb ├── spec_system_helper.rb ├── support │ ├── other_target.yml │ ├── target.yml │ ├── test_example.fail │ ├── test_example.pass │ ├── test_example_empty.pass │ ├── test_example_ignore.pass │ ├── test_example_mangled.pass │ └── test_example_with_time.pass ├── system │ ├── deployment_as_gem_spec.rb │ ├── deployment_as_vendor_spec.rb │ ├── example_temp_sensor_spec.rb │ └── upgrade_as_vendor_spec.rb ├── system_utils_spec.rb ├── test_context_extractor_spec.rb ├── tool_executor_helper_spec.rb └── uncategorized_specs_spec.rb └── vendor └── diy ├── History.txt ├── LICENSE.txt ├── README.rdoc ├── Rakefile ├── TODO.txt ├── diy.gemspec ├── lib ├── diy.rb └── diy │ └── factory.rb ├── sample_code ├── car.rb ├── chassis.rb ├── diy_example.rb ├── engine.rb └── objects.yml └── test ├── constructor.rb ├── diy_test.rb ├── factory_test.rb ├── files ├── broken_construction.yml ├── cat │ ├── cat.rb │ ├── extra_conflict.yml │ ├── heritage.rb │ ├── needs_input.yml │ └── the_cat_lineage.rb ├── dog │ ├── dog_model.rb │ ├── dog_presenter.rb │ ├── dog_view.rb │ ├── file_resolver.rb │ ├── other_thing.rb │ └── simple.yml ├── donkey │ ├── foo.rb │ └── foo │ │ └── bar │ │ └── qux.rb ├── factory │ ├── beef.rb │ ├── dog.rb │ ├── factory.yml │ ├── farm │ │ ├── llama.rb │ │ └── pork.rb │ └── kitten.rb ├── fud │ ├── objects.yml │ └── toy.rb ├── functions │ ├── attached_things_builder.rb │ ├── invalid_method.yml │ ├── method_extractor.rb │ ├── nonsingleton_objects.yml │ ├── objects.yml │ ├── thing.rb │ ├── thing_builder.rb │ └── things_builder.rb ├── gnu │ ├── objects.yml │ └── thinger.rb ├── goat │ ├── base.rb │ ├── can.rb │ ├── goat.rb │ ├── objects.yml │ ├── paper.rb │ ├── plane.rb │ ├── shirt.rb │ └── wings.rb ├── horse │ ├── holder_thing.rb │ └── objects.yml ├── namespace │ ├── animal │ │ ├── bird.rb │ │ ├── cat.rb │ │ └── reptile │ │ │ ├── hardshell │ │ │ └── turtle.rb │ │ │ └── lizard.rb │ ├── bad_module_specified.yml │ ├── class_name_combine.yml │ ├── hello.txt │ ├── no_module_specified.yml │ ├── objects.yml │ ├── road.rb │ ├── sky.rb │ └── subcontext.yml ├── non_singleton │ ├── air.rb │ ├── fat_cat.rb │ ├── objects.yml │ ├── pig.rb │ ├── thread_spinner.rb │ ├── tick.rb │ └── yard.rb └── yak │ ├── core_model.rb │ ├── core_presenter.rb │ ├── core_view.rb │ ├── data_source.rb │ ├── fringe_model.rb │ ├── fringe_presenter.rb │ ├── fringe_view.rb │ ├── giant_squid.rb │ ├── krill.rb │ ├── my_objects.yml │ └── sub_sub_context_test.yml └── test_helper.rb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/.gitmodules -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/Rakefile -------------------------------------------------------------------------------- /assets/ceedling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/ceedling -------------------------------------------------------------------------------- /assets/ceedling.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/ceedling.cmd -------------------------------------------------------------------------------- /assets/default_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/default_gitignore -------------------------------------------------------------------------------- /assets/example_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/example_file.c -------------------------------------------------------------------------------- /assets/example_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/example_file.h -------------------------------------------------------------------------------- /assets/example_file_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/example_file_call.c -------------------------------------------------------------------------------- /assets/example_file_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/example_file_call.h -------------------------------------------------------------------------------- /assets/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/project.yml -------------------------------------------------------------------------------- /assets/test_example_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/test_example_file.c -------------------------------------------------------------------------------- /assets/test_example_file_boom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/test_example_file_boom.c -------------------------------------------------------------------------------- /assets/test_example_file_crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/test_example_file_crash.c -------------------------------------------------------------------------------- /assets/test_example_file_success.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/test_example_file_success.c -------------------------------------------------------------------------------- /assets/test_example_file_unity_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/test_example_file_unity_printf.c -------------------------------------------------------------------------------- /assets/test_example_file_verbose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/test_example_file_verbose.c -------------------------------------------------------------------------------- /assets/test_example_file_with_mock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/test_example_file_with_mock.c -------------------------------------------------------------------------------- /assets/test_example_with_parameterized_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/test_example_with_parameterized_tests.c -------------------------------------------------------------------------------- /assets/tests_with_defines/src/adc_hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_defines/src/adc_hardware.c -------------------------------------------------------------------------------- /assets/tests_with_defines/src/adc_hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_defines/src/adc_hardware.h -------------------------------------------------------------------------------- /assets/tests_with_defines/src/adc_hardware_configurator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_defines/src/adc_hardware_configurator.c -------------------------------------------------------------------------------- /assets/tests_with_defines/src/adc_hardware_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_defines/src/adc_hardware_configurator.h -------------------------------------------------------------------------------- /assets/tests_with_defines/test/test_adc_hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_defines/test/test_adc_hardware.c -------------------------------------------------------------------------------- /assets/tests_with_defines/test/test_adc_hardware_special.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_defines/test/test_adc_hardware_special.c -------------------------------------------------------------------------------- /assets/tests_with_preprocessing/src/adc_hardwareA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_preprocessing/src/adc_hardwareA.c -------------------------------------------------------------------------------- /assets/tests_with_preprocessing/src/adc_hardwareA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_preprocessing/src/adc_hardwareA.h -------------------------------------------------------------------------------- /assets/tests_with_preprocessing/src/adc_hardwareB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_preprocessing/src/adc_hardwareB.c -------------------------------------------------------------------------------- /assets/tests_with_preprocessing/src/adc_hardwareB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_preprocessing/src/adc_hardwareB.h -------------------------------------------------------------------------------- /assets/tests_with_preprocessing/src/adc_hardwareC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_preprocessing/src/adc_hardwareC.c -------------------------------------------------------------------------------- /assets/tests_with_preprocessing/src/adc_hardwareC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_preprocessing/src/adc_hardwareC.h -------------------------------------------------------------------------------- /assets/tests_with_preprocessing/src/adc_hardware_configuratorA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_preprocessing/src/adc_hardware_configuratorA.h -------------------------------------------------------------------------------- /assets/tests_with_preprocessing/src/adc_hardware_configuratorB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_preprocessing/src/adc_hardware_configuratorB.h -------------------------------------------------------------------------------- /assets/tests_with_preprocessing/src/adc_hardware_configuratorC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_preprocessing/src/adc_hardware_configuratorC.h -------------------------------------------------------------------------------- /assets/tests_with_preprocessing/test/test_adc_hardwareA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_preprocessing/test/test_adc_hardwareA.c -------------------------------------------------------------------------------- /assets/tests_with_preprocessing/test/test_adc_hardwareB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_preprocessing/test/test_adc_hardwareB.c -------------------------------------------------------------------------------- /assets/tests_with_preprocessing/test/test_adc_hardwareC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/tests_with_preprocessing/test/test_adc_hardwareC.c -------------------------------------------------------------------------------- /assets/uncovered_example_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/assets/uncovered_example_file.c -------------------------------------------------------------------------------- /bin/actions_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/actions_wrapper.rb -------------------------------------------------------------------------------- /bin/app_cfg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/app_cfg.rb -------------------------------------------------------------------------------- /bin/ceedling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/ceedling -------------------------------------------------------------------------------- /bin/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/cli.rb -------------------------------------------------------------------------------- /bin/cli_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/cli_handler.rb -------------------------------------------------------------------------------- /bin/cli_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/cli_helper.rb -------------------------------------------------------------------------------- /bin/configinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/configinator.rb -------------------------------------------------------------------------------- /bin/mixinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/mixinator.rb -------------------------------------------------------------------------------- /bin/mixins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/mixins.rb -------------------------------------------------------------------------------- /bin/objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/objects.yml -------------------------------------------------------------------------------- /bin/path_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/path_validator.rb -------------------------------------------------------------------------------- /bin/projectinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/projectinator.rb -------------------------------------------------------------------------------- /bin/versionator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/bin/versionator.rb -------------------------------------------------------------------------------- /ceedling.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/ceedling.gemspec -------------------------------------------------------------------------------- /config/test_environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/config/test_environment.rb -------------------------------------------------------------------------------- /docs/BreakingChanges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/BreakingChanges.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/Ceedling Basic Porting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/Ceedling Basic Porting.pdf -------------------------------------------------------------------------------- /docs/Ceedling Managing Release Code.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/Ceedling Managing Release Code.pdf -------------------------------------------------------------------------------- /docs/Ceedling Working with IDEs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/Ceedling Working with IDEs.pdf -------------------------------------------------------------------------------- /docs/CeedlingPacket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/CeedlingPacket.md -------------------------------------------------------------------------------- /docs/CeedlingPullRequestChecklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/CeedlingPullRequestChecklist.md -------------------------------------------------------------------------------- /docs/CeedlingUpgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/CeedlingUpgrade.md -------------------------------------------------------------------------------- /docs/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/Changelog.md -------------------------------------------------------------------------------- /docs/PluginDevelopmentGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/PluginDevelopmentGuide.md -------------------------------------------------------------------------------- /docs/ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/ReleaseNotes.md -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/ThrowTheSwitchCodingStandard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/docs/ThrowTheSwitchCodingStandard.md -------------------------------------------------------------------------------- /examples/temp_sensor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/README.md -------------------------------------------------------------------------------- /examples/temp_sensor/mixin/add_gcov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/mixin/add_gcov.yml -------------------------------------------------------------------------------- /examples/temp_sensor/mixin/add_unity_helper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/mixin/add_unity_helper.yml -------------------------------------------------------------------------------- /examples/temp_sensor/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/project.yml -------------------------------------------------------------------------------- /examples/temp_sensor/src/AdcConductor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/AdcConductor.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/AdcConductor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/AdcConductor.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/AdcHardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/AdcHardware.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/AdcHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/AdcHardware.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/AdcHardwareConfigurator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/AdcHardwareConfigurator.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/AdcHardwareConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/AdcHardwareConfigurator.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/AdcModel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/AdcModel.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/AdcModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/AdcModel.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/AdcTemperatureSensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/AdcTemperatureSensor.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/AdcTemperatureSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/AdcTemperatureSensor.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/Executor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/Executor.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/Executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/Executor.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/IntrinsicsWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/IntrinsicsWrapper.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/IntrinsicsWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/IntrinsicsWrapper.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/Main.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/Main.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/Model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/Model.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/Model.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/ModelConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/ModelConfig.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/TaskScheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TaskScheduler.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/TaskScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TaskScheduler.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/TemperatureFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TemperatureFilter.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/TemperatureFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TemperatureFilter.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/TimerConductor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TimerConductor.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/TimerConductor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TimerConductor.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/TimerConfigurator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TimerConfigurator.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/TimerConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TimerConfigurator.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/TimerHardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TimerHardware.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/TimerHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TimerHardware.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/TimerInterruptConfigurator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TimerInterruptConfigurator.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/TimerInterruptConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TimerInterruptConfigurator.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/TimerInterruptHandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TimerInterruptHandler.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/TimerInterruptHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TimerInterruptHandler.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/TimerModel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TimerModel.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/TimerModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/TimerModel.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/Types.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/UsartConductor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/UsartConductor.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/UsartConductor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/UsartConductor.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/UsartConfigurator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/UsartConfigurator.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/UsartConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/UsartConfigurator.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/UsartHardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/UsartHardware.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/UsartHardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/UsartHardware.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/UsartModel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/UsartModel.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/UsartModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/UsartModel.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/UsartPutChar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/UsartPutChar.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/UsartPutChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/UsartPutChar.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/UsartTransmitBufferStatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/UsartTransmitBufferStatus.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/UsartTransmitBufferStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/UsartTransmitBufferStatus.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/calculators/TemperatureCalculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/calculators/TemperatureCalculator.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/calculators/TemperatureCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/calculators/TemperatureCalculator.h -------------------------------------------------------------------------------- /examples/temp_sensor/src/calculators/UsartBaudRateRegisterCalculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/calculators/UsartBaudRateRegisterCalculator.c -------------------------------------------------------------------------------- /examples/temp_sensor/src/calculators/UsartBaudRateRegisterCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/src/calculators/UsartBaudRateRegisterCalculator.h -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestExecutor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestExecutor.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestMain.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestModel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestModel.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestTaskScheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestTaskScheduler.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestTemperatureCalculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestTemperatureCalculator.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestTemperatureFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestTemperatureFilter.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestTimerConductor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestTimerConductor.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestTimerHardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestTimerHardware.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestTimerIntegrated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestTimerIntegrated.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestTimerModel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestTimerModel.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestUsartConductor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestUsartConductor.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestUsartHardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestUsartHardware.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestUsartIntegrated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestUsartIntegrated.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/TestUsartModel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/TestUsartModel.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/adc/TestAdcConductor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/adc/TestAdcConductor.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/adc/TestAdcHardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/adc/TestAdcHardware.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/adc/TestAdcModel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/adc/TestAdcModel.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/support/UnityHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/support/UnityHelper.c -------------------------------------------------------------------------------- /examples/temp_sensor/test/support/UnityHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/examples/temp_sensor/test/support/UnityHelper.h -------------------------------------------------------------------------------- /lib/ceedling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling.rb -------------------------------------------------------------------------------- /lib/ceedling/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/application.rb -------------------------------------------------------------------------------- /lib/ceedling/backtrace.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/backtrace.gdb -------------------------------------------------------------------------------- /lib/ceedling/build_batchinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/build_batchinator.rb -------------------------------------------------------------------------------- /lib/ceedling/cacheinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/cacheinator.rb -------------------------------------------------------------------------------- /lib/ceedling/cacheinator_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/cacheinator_helper.rb -------------------------------------------------------------------------------- /lib/ceedling/config_matchinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/config_matchinator.rb -------------------------------------------------------------------------------- /lib/ceedling/config_walkinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/config_walkinator.rb -------------------------------------------------------------------------------- /lib/ceedling/configurator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/configurator.rb -------------------------------------------------------------------------------- /lib/ceedling/configurator_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/configurator_builder.rb -------------------------------------------------------------------------------- /lib/ceedling/configurator_plugins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/configurator_plugins.rb -------------------------------------------------------------------------------- /lib/ceedling/configurator_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/configurator_setup.rb -------------------------------------------------------------------------------- /lib/ceedling/configurator_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/configurator_validator.rb -------------------------------------------------------------------------------- /lib/ceedling/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/constants.rb -------------------------------------------------------------------------------- /lib/ceedling/defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/defaults.rb -------------------------------------------------------------------------------- /lib/ceedling/defineinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/defineinator.rb -------------------------------------------------------------------------------- /lib/ceedling/dependinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/dependinator.rb -------------------------------------------------------------------------------- /lib/ceedling/encodinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/encodinator.rb -------------------------------------------------------------------------------- /lib/ceedling/erb_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/erb_wrapper.rb -------------------------------------------------------------------------------- /lib/ceedling/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/exceptions.rb -------------------------------------------------------------------------------- /lib/ceedling/file_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/file_finder.rb -------------------------------------------------------------------------------- /lib/ceedling/file_finder_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/file_finder_helper.rb -------------------------------------------------------------------------------- /lib/ceedling/file_path_collection_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/file_path_collection_utils.rb -------------------------------------------------------------------------------- /lib/ceedling/file_path_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/file_path_utils.rb -------------------------------------------------------------------------------- /lib/ceedling/file_system_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/file_system_wrapper.rb -------------------------------------------------------------------------------- /lib/ceedling/file_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/file_wrapper.rb -------------------------------------------------------------------------------- /lib/ceedling/flaginator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/flaginator.rb -------------------------------------------------------------------------------- /lib/ceedling/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/generator.rb -------------------------------------------------------------------------------- /lib/ceedling/generator_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/generator_helper.rb -------------------------------------------------------------------------------- /lib/ceedling/generator_mocks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/generator_mocks.rb -------------------------------------------------------------------------------- /lib/ceedling/generator_test_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/generator_test_results.rb -------------------------------------------------------------------------------- /lib/ceedling/generator_test_results_backtrace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/generator_test_results_backtrace.rb -------------------------------------------------------------------------------- /lib/ceedling/generator_test_results_sanity_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/generator_test_results_sanity_checker.rb -------------------------------------------------------------------------------- /lib/ceedling/generator_test_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/generator_test_runner.rb -------------------------------------------------------------------------------- /lib/ceedling/include_pathinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/include_pathinator.rb -------------------------------------------------------------------------------- /lib/ceedling/loginator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/loginator.rb -------------------------------------------------------------------------------- /lib/ceedling/makefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/makefile.rb -------------------------------------------------------------------------------- /lib/ceedling/objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/objects.yml -------------------------------------------------------------------------------- /lib/ceedling/parsing_parcels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/parsing_parcels.rb -------------------------------------------------------------------------------- /lib/ceedling/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/plugin.rb -------------------------------------------------------------------------------- /lib/ceedling/plugin_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/plugin_manager.rb -------------------------------------------------------------------------------- /lib/ceedling/plugin_manager_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/plugin_manager_helper.rb -------------------------------------------------------------------------------- /lib/ceedling/plugin_reportinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/plugin_reportinator.rb -------------------------------------------------------------------------------- /lib/ceedling/plugin_reportinator_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/plugin_reportinator_helper.rb -------------------------------------------------------------------------------- /lib/ceedling/preprocessinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/preprocessinator.rb -------------------------------------------------------------------------------- /lib/ceedling/preprocessinator_extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/preprocessinator_extractor.rb -------------------------------------------------------------------------------- /lib/ceedling/preprocessinator_file_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/preprocessinator_file_handler.rb -------------------------------------------------------------------------------- /lib/ceedling/preprocessinator_includes_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/preprocessinator_includes_handler.rb -------------------------------------------------------------------------------- /lib/ceedling/rake_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/rake_utils.rb -------------------------------------------------------------------------------- /lib/ceedling/rake_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/rake_wrapper.rb -------------------------------------------------------------------------------- /lib/ceedling/rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/rakefile.rb -------------------------------------------------------------------------------- /lib/ceedling/release_invoker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/release_invoker.rb -------------------------------------------------------------------------------- /lib/ceedling/release_invoker_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/release_invoker_helper.rb -------------------------------------------------------------------------------- /lib/ceedling/reportinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/reportinator.rb -------------------------------------------------------------------------------- /lib/ceedling/rules_release.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/rules_release.rake -------------------------------------------------------------------------------- /lib/ceedling/rules_tests.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/rules_tests.rake -------------------------------------------------------------------------------- /lib/ceedling/setupinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/setupinator.rb -------------------------------------------------------------------------------- /lib/ceedling/stream_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/stream_wrapper.rb -------------------------------------------------------------------------------- /lib/ceedling/system_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/system_utils.rb -------------------------------------------------------------------------------- /lib/ceedling/system_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/system_wrapper.rb -------------------------------------------------------------------------------- /lib/ceedling/task_invoker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/task_invoker.rb -------------------------------------------------------------------------------- /lib/ceedling/tasks_base.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/tasks_base.rake -------------------------------------------------------------------------------- /lib/ceedling/tasks_filesystem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/tasks_filesystem.rake -------------------------------------------------------------------------------- /lib/ceedling/tasks_release.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/tasks_release.rake -------------------------------------------------------------------------------- /lib/ceedling/tasks_tests.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/tasks_tests.rake -------------------------------------------------------------------------------- /lib/ceedling/test_context_extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/test_context_extractor.rb -------------------------------------------------------------------------------- /lib/ceedling/test_invoker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/test_invoker.rb -------------------------------------------------------------------------------- /lib/ceedling/test_invoker_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/test_invoker_helper.rb -------------------------------------------------------------------------------- /lib/ceedling/test_runner_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/test_runner_manager.rb -------------------------------------------------------------------------------- /lib/ceedling/tool_executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/tool_executor.rb -------------------------------------------------------------------------------- /lib/ceedling/tool_executor_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/tool_executor_helper.rb -------------------------------------------------------------------------------- /lib/ceedling/tool_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/tool_validator.rb -------------------------------------------------------------------------------- /lib/ceedling/verbosinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/verbosinator.rb -------------------------------------------------------------------------------- /lib/ceedling/yaml_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/ceedling/yaml_wrapper.rb -------------------------------------------------------------------------------- /lib/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/lib/version.rb -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/license.txt -------------------------------------------------------------------------------- /plugins/beep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/beep/README.md -------------------------------------------------------------------------------- /plugins/beep/config/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/beep/config/defaults.yml -------------------------------------------------------------------------------- /plugins/beep/config/defaults_beep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/beep/config/defaults_beep.rb -------------------------------------------------------------------------------- /plugins/beep/lib/beep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/beep/lib/beep.rb -------------------------------------------------------------------------------- /plugins/bullseye/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/bullseye/README.md -------------------------------------------------------------------------------- /plugins/bullseye/assets/template.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/bullseye/assets/template.erb -------------------------------------------------------------------------------- /plugins/bullseye/bullseye.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/bullseye/bullseye.rake -------------------------------------------------------------------------------- /plugins/bullseye/config/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/bullseye/config/defaults.yml -------------------------------------------------------------------------------- /plugins/bullseye/lib/bullseye.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/bullseye/lib/bullseye.rb -------------------------------------------------------------------------------- /plugins/command_hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/command_hooks/README.md -------------------------------------------------------------------------------- /plugins/command_hooks/lib/command_hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/command_hooks/lib/command_hooks.rb -------------------------------------------------------------------------------- /plugins/compile_commands_json_db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/compile_commands_json_db/README.md -------------------------------------------------------------------------------- /plugins/compile_commands_json_db/lib/compile_commands_json_db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/compile_commands_json_db/lib/compile_commands_json_db.rb -------------------------------------------------------------------------------- /plugins/dependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/README.md -------------------------------------------------------------------------------- /plugins/dependencies/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/Rakefile -------------------------------------------------------------------------------- /plugins/dependencies/config/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/config/defaults.yml -------------------------------------------------------------------------------- /plugins/dependencies/dependencies.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/dependencies.rake -------------------------------------------------------------------------------- /plugins/dependencies/example/boss/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/example/boss/project.yml -------------------------------------------------------------------------------- /plugins/dependencies/example/boss/src/boss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/example/boss/src/boss.c -------------------------------------------------------------------------------- /plugins/dependencies/example/boss/src/boss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/example/boss/src/boss.h -------------------------------------------------------------------------------- /plugins/dependencies/example/boss/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/example/boss/src/main.c -------------------------------------------------------------------------------- /plugins/dependencies/example/boss/test/test_boss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/example/boss/test/test_boss.c -------------------------------------------------------------------------------- /plugins/dependencies/example/supervisor/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/example/supervisor/project.yml -------------------------------------------------------------------------------- /plugins/dependencies/example/supervisor/src/supervisor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/example/supervisor/src/supervisor.c -------------------------------------------------------------------------------- /plugins/dependencies/example/supervisor/src/supervisor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/example/supervisor/src/supervisor.h -------------------------------------------------------------------------------- /plugins/dependencies/example/supervisor/test/test_supervisor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/example/supervisor/test/test_supervisor.c -------------------------------------------------------------------------------- /plugins/dependencies/example/version.tar.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/example/version.tar.gzip -------------------------------------------------------------------------------- /plugins/dependencies/example/workerbees.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/example/workerbees.zip -------------------------------------------------------------------------------- /plugins/dependencies/lib/dependencies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/dependencies/lib/dependencies.rb -------------------------------------------------------------------------------- /plugins/fff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/README.md -------------------------------------------------------------------------------- /plugins/fff/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/Rakefile -------------------------------------------------------------------------------- /plugins/fff/config/fff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/config/fff.yml -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/build/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/project.yml -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/src/bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/src/bar.c -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/src/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/src/bar.h -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/src/custom_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/src/custom_types.h -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/src/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/src/display.c -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/src/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/src/display.h -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/src/event_processor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/src/event_processor.c -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/src/event_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/src/event_processor.h -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/src/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/src/foo.c -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/src/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/src/foo.h -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/src/subfolder/zzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/src/subfolder/zzz.c -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/src/subfolder/zzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/src/subfolder/zzz.h -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/test/test_event_processor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/test/test_event_processor.c -------------------------------------------------------------------------------- /plugins/fff/examples/fff_example/test/test_foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/examples/fff_example/test/test_foo.c -------------------------------------------------------------------------------- /plugins/fff/lib/fff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/lib/fff.rb -------------------------------------------------------------------------------- /plugins/fff/lib/fff_mock_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/lib/fff_mock_generator.rb -------------------------------------------------------------------------------- /plugins/fff/spec/fff_mock_header_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/spec/fff_mock_header_generator_spec.rb -------------------------------------------------------------------------------- /plugins/fff/spec/fff_mock_source_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/spec/fff_mock_source_generator_spec.rb -------------------------------------------------------------------------------- /plugins/fff/spec/header_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/spec/header_generator.rb -------------------------------------------------------------------------------- /plugins/fff/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/spec/spec_helper.rb -------------------------------------------------------------------------------- /plugins/fff/src/fff_unity_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/src/fff_unity_helper.h -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/LICENSE -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/Makefile -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/README.md -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/buildandtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/buildandtest -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/Makefile -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/driver_testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/driver_testing/Makefile -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/driver_testing/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/driver_testing/driver.c -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/driver_testing/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/driver_testing/driver.h -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/driver_testing/driver.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/driver_testing/driver.test.cpp -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/driver_testing/driver.test.fff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/driver_testing/driver.test.fff.cpp -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/driver_testing/hardware_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/driver_testing/hardware_abstraction.h -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/driver_testing/registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/driver_testing/registers.h -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/embedded_ui/DISPLAY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/embedded_ui/DISPLAY.h -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/embedded_ui/Kata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/embedded_ui/Kata.txt -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/embedded_ui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/embedded_ui/Makefile -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/embedded_ui/SYSTEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/embedded_ui/SYSTEM.h -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/embedded_ui/UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/embedded_ui/UI.c -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/embedded_ui/UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/embedded_ui/UI.h -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/embedded_ui/UI_test_ansic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/embedded_ui/UI_test_ansic.c -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/embedded_ui/UI_test_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/embedded_ui/UI_test_cpp.cpp -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/examples/embedded_ui/test_suite_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/examples/embedded_ui/test_suite_template.c -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/fakegen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/fakegen.rb -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/fff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/fff.h -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/gtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/gtest/Makefile -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/gtest/gtest-all.cc -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/gtest/gtest-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/gtest/gtest-main.cc -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/gtest/gtest.h -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/test/Makefile -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/test/c_test_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/test/c_test_framework.h -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/test/fff_test_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/test/fff_test_c.c -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/test/fff_test_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/test/fff_test_cpp.cpp -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/test/fff_test_global_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/test/fff_test_global_c.c -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/test/fff_test_global_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/test/fff_test_global_cpp.cpp -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/test/global_fakes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/test/global_fakes.c -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/test/global_fakes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/test/global_fakes.h -------------------------------------------------------------------------------- /plugins/fff/vendor/fff/test/test_cases.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/fff/vendor/fff/test/test_cases.include -------------------------------------------------------------------------------- /plugins/gcov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/gcov/README.md -------------------------------------------------------------------------------- /plugins/gcov/config/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/gcov/config/defaults.yml -------------------------------------------------------------------------------- /plugins/gcov/config/defaults_gcov.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/gcov/config/defaults_gcov.rb -------------------------------------------------------------------------------- /plugins/gcov/gcov.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/gcov/gcov.rake -------------------------------------------------------------------------------- /plugins/gcov/lib/gcov.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/gcov/lib/gcov.rb -------------------------------------------------------------------------------- /plugins/gcov/lib/gcov_constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/gcov/lib/gcov_constants.rb -------------------------------------------------------------------------------- /plugins/gcov/lib/gcovr_reportinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/gcov/lib/gcovr_reportinator.rb -------------------------------------------------------------------------------- /plugins/gcov/lib/reportgenerator_reportinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/gcov/lib/reportgenerator_reportinator.rb -------------------------------------------------------------------------------- /plugins/gcov/lib/reportinator_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/gcov/lib/reportinator_helper.rb -------------------------------------------------------------------------------- /plugins/module_generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/module_generator/README.md -------------------------------------------------------------------------------- /plugins/module_generator/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/module_generator/Rakefile -------------------------------------------------------------------------------- /plugins/module_generator/assets/stubby1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/module_generator/assets/stubby1.h -------------------------------------------------------------------------------- /plugins/module_generator/assets/stubby2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/module_generator/assets/stubby2.h -------------------------------------------------------------------------------- /plugins/module_generator/config/module_generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/module_generator/config/module_generator.yml -------------------------------------------------------------------------------- /plugins/module_generator/example/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/module_generator/example/project.yml -------------------------------------------------------------------------------- /plugins/module_generator/lib/module_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/module_generator/lib/module_generator.rb -------------------------------------------------------------------------------- /plugins/module_generator/module_generator.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/module_generator/module_generator.rake -------------------------------------------------------------------------------- /plugins/report_build_warnings_log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_build_warnings_log/README.md -------------------------------------------------------------------------------- /plugins/report_build_warnings_log/config/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_build_warnings_log/config/defaults.yml -------------------------------------------------------------------------------- /plugins/report_build_warnings_log/lib/report_build_warnings_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_build_warnings_log/lib/report_build_warnings_log.rb -------------------------------------------------------------------------------- /plugins/report_tests_gtestlike_stdout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_gtestlike_stdout/README.md -------------------------------------------------------------------------------- /plugins/report_tests_gtestlike_stdout/assets/template.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_gtestlike_stdout/assets/template.erb -------------------------------------------------------------------------------- /plugins/report_tests_gtestlike_stdout/config/report_tests_gtestlike_stdout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_gtestlike_stdout/config/report_tests_gtestlike_stdout.yml -------------------------------------------------------------------------------- /plugins/report_tests_gtestlike_stdout/lib/report_tests_gtestlike_stdout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_gtestlike_stdout/lib/report_tests_gtestlike_stdout.rb -------------------------------------------------------------------------------- /plugins/report_tests_ide_stdout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_ide_stdout/README.md -------------------------------------------------------------------------------- /plugins/report_tests_ide_stdout/config/report_tests_ide_stdout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_ide_stdout/config/report_tests_ide_stdout.yml -------------------------------------------------------------------------------- /plugins/report_tests_ide_stdout/lib/report_tests_ide_stdout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_ide_stdout/lib/report_tests_ide_stdout.rb -------------------------------------------------------------------------------- /plugins/report_tests_log_factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_log_factory/README.md -------------------------------------------------------------------------------- /plugins/report_tests_log_factory/config/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_log_factory/config/defaults.yml -------------------------------------------------------------------------------- /plugins/report_tests_log_factory/lib/cppunit_tests_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_log_factory/lib/cppunit_tests_reporter.rb -------------------------------------------------------------------------------- /plugins/report_tests_log_factory/lib/html_tests_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_log_factory/lib/html_tests_reporter.rb -------------------------------------------------------------------------------- /plugins/report_tests_log_factory/lib/json_tests_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_log_factory/lib/json_tests_reporter.rb -------------------------------------------------------------------------------- /plugins/report_tests_log_factory/lib/junit_tests_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_log_factory/lib/junit_tests_reporter.rb -------------------------------------------------------------------------------- /plugins/report_tests_log_factory/lib/report_tests_log_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_log_factory/lib/report_tests_log_factory.rb -------------------------------------------------------------------------------- /plugins/report_tests_log_factory/lib/tests_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_log_factory/lib/tests_reporter.rb -------------------------------------------------------------------------------- /plugins/report_tests_log_factory/sample_html_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_log_factory/sample_html_report.png -------------------------------------------------------------------------------- /plugins/report_tests_pretty_stdout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_pretty_stdout/README.md -------------------------------------------------------------------------------- /plugins/report_tests_pretty_stdout/assets/template.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_pretty_stdout/assets/template.erb -------------------------------------------------------------------------------- /plugins/report_tests_pretty_stdout/config/report_tests_pretty_stdout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_pretty_stdout/config/report_tests_pretty_stdout.yml -------------------------------------------------------------------------------- /plugins/report_tests_pretty_stdout/lib/report_tests_pretty_stdout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_pretty_stdout/lib/report_tests_pretty_stdout.rb -------------------------------------------------------------------------------- /plugins/report_tests_raw_output_log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_raw_output_log/README.md -------------------------------------------------------------------------------- /plugins/report_tests_raw_output_log/lib/report_tests_raw_output_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_raw_output_log/lib/report_tests_raw_output_log.rb -------------------------------------------------------------------------------- /plugins/report_tests_teamcity_stdout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_teamcity_stdout/README.md -------------------------------------------------------------------------------- /plugins/report_tests_teamcity_stdout/config/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_teamcity_stdout/config/defaults.yml -------------------------------------------------------------------------------- /plugins/report_tests_teamcity_stdout/config/report_tests_teamcity_stdout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_teamcity_stdout/config/report_tests_teamcity_stdout.yml -------------------------------------------------------------------------------- /plugins/report_tests_teamcity_stdout/lib/report_tests_teamcity_stdout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/plugins/report_tests_teamcity_stdout/lib/report_tests_teamcity_stdout.rb -------------------------------------------------------------------------------- /spec/config_walkinator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/config_walkinator_spec.rb -------------------------------------------------------------------------------- /spec/configurator_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/configurator_builder_spec.rb -------------------------------------------------------------------------------- /spec/configurator_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/configurator_helper_spec.rb -------------------------------------------------------------------------------- /spec/configurator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/configurator_spec.rb -------------------------------------------------------------------------------- /spec/file_finder_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/file_finder_helper_spec.rb -------------------------------------------------------------------------------- /spec/gcov/gcov_deployment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/gcov/gcov_deployment_spec.rb -------------------------------------------------------------------------------- /spec/gcov/gcov_test_cases_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/gcov/gcov_test_cases_spec.rb -------------------------------------------------------------------------------- /spec/generator_test_results_sanity_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/generator_test_results_sanity_checker_spec.rb -------------------------------------------------------------------------------- /spec/generator_test_results_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/generator_test_results_spec.rb -------------------------------------------------------------------------------- /spec/manual/stress_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/manual/stress_test.rb -------------------------------------------------------------------------------- /spec/parsing_parcels_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/parsing_parcels_spec.rb -------------------------------------------------------------------------------- /spec/preprocessinator_extractor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/preprocessinator_extractor_spec.rb -------------------------------------------------------------------------------- /spec/preprocessinator_includes_handler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/preprocessinator_includes_handler_spec.rb -------------------------------------------------------------------------------- /spec/reportinator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/reportinator_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_system_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/spec_system_helper.rb -------------------------------------------------------------------------------- /spec/support/other_target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/support/other_target.yml -------------------------------------------------------------------------------- /spec/support/target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/support/target.yml -------------------------------------------------------------------------------- /spec/support/test_example.fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/support/test_example.fail -------------------------------------------------------------------------------- /spec/support/test_example.pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/support/test_example.pass -------------------------------------------------------------------------------- /spec/support/test_example_empty.pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/support/test_example_empty.pass -------------------------------------------------------------------------------- /spec/support/test_example_ignore.pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/support/test_example_ignore.pass -------------------------------------------------------------------------------- /spec/support/test_example_mangled.pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/support/test_example_mangled.pass -------------------------------------------------------------------------------- /spec/support/test_example_with_time.pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/support/test_example_with_time.pass -------------------------------------------------------------------------------- /spec/system/deployment_as_gem_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/system/deployment_as_gem_spec.rb -------------------------------------------------------------------------------- /spec/system/deployment_as_vendor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/system/deployment_as_vendor_spec.rb -------------------------------------------------------------------------------- /spec/system/example_temp_sensor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/system/example_temp_sensor_spec.rb -------------------------------------------------------------------------------- /spec/system/upgrade_as_vendor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/system/upgrade_as_vendor_spec.rb -------------------------------------------------------------------------------- /spec/system_utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/system_utils_spec.rb -------------------------------------------------------------------------------- /spec/test_context_extractor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/test_context_extractor_spec.rb -------------------------------------------------------------------------------- /spec/tool_executor_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/tool_executor_helper_spec.rb -------------------------------------------------------------------------------- /spec/uncategorized_specs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/spec/uncategorized_specs_spec.rb -------------------------------------------------------------------------------- /vendor/diy/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/History.txt -------------------------------------------------------------------------------- /vendor/diy/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/LICENSE.txt -------------------------------------------------------------------------------- /vendor/diy/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/README.rdoc -------------------------------------------------------------------------------- /vendor/diy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/Rakefile -------------------------------------------------------------------------------- /vendor/diy/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/TODO.txt -------------------------------------------------------------------------------- /vendor/diy/diy.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/diy.gemspec -------------------------------------------------------------------------------- /vendor/diy/lib/diy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/lib/diy.rb -------------------------------------------------------------------------------- /vendor/diy/lib/diy/factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/lib/diy/factory.rb -------------------------------------------------------------------------------- /vendor/diy/sample_code/car.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/sample_code/car.rb -------------------------------------------------------------------------------- /vendor/diy/sample_code/chassis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/sample_code/chassis.rb -------------------------------------------------------------------------------- /vendor/diy/sample_code/diy_example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/sample_code/diy_example.rb -------------------------------------------------------------------------------- /vendor/diy/sample_code/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/sample_code/engine.rb -------------------------------------------------------------------------------- /vendor/diy/sample_code/objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/sample_code/objects.yml -------------------------------------------------------------------------------- /vendor/diy/test/constructor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/constructor.rb -------------------------------------------------------------------------------- /vendor/diy/test/diy_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/diy_test.rb -------------------------------------------------------------------------------- /vendor/diy/test/factory_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/factory_test.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/broken_construction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/broken_construction.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/cat/cat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/cat/cat.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/cat/extra_conflict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/cat/extra_conflict.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/cat/heritage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/cat/heritage.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/cat/needs_input.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/cat/needs_input.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/cat/the_cat_lineage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/cat/the_cat_lineage.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/dog/dog_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/dog/dog_model.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/dog/dog_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/dog/dog_presenter.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/dog/dog_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/dog/dog_view.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/dog/file_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/dog/file_resolver.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/dog/other_thing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/dog/other_thing.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/dog/simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/dog/simple.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/donkey/foo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/donkey/foo.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/donkey/foo/bar/qux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/donkey/foo/bar/qux.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/factory/beef.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/factory/beef.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/factory/dog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/factory/dog.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/factory/factory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/factory/factory.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/factory/farm/llama.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/factory/farm/llama.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/factory/farm/pork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/factory/farm/pork.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/factory/kitten.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/factory/kitten.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/fud/objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/fud/objects.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/fud/toy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/fud/toy.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/functions/attached_things_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/functions/attached_things_builder.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/functions/invalid_method.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/functions/invalid_method.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/functions/method_extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/functions/method_extractor.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/functions/nonsingleton_objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/functions/nonsingleton_objects.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/functions/objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/functions/objects.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/functions/thing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/functions/thing.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/functions/thing_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/functions/thing_builder.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/functions/things_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/functions/things_builder.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/gnu/objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/gnu/objects.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/gnu/thinger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/gnu/thinger.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/goat/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/goat/base.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/goat/can.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/goat/can.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/goat/goat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/goat/goat.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/goat/objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/goat/objects.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/goat/paper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/goat/paper.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/goat/plane.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/goat/plane.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/goat/shirt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/goat/shirt.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/goat/wings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/goat/wings.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/horse/holder_thing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/horse/holder_thing.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/horse/objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/horse/objects.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/namespace/animal/bird.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/namespace/animal/bird.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/namespace/animal/cat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/namespace/animal/cat.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/namespace/animal/reptile/hardshell/turtle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/namespace/animal/reptile/hardshell/turtle.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/namespace/animal/reptile/lizard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/namespace/animal/reptile/lizard.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/namespace/bad_module_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/namespace/bad_module_specified.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/namespace/class_name_combine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/namespace/class_name_combine.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/namespace/hello.txt: -------------------------------------------------------------------------------- 1 | this is the info -------------------------------------------------------------------------------- /vendor/diy/test/files/namespace/no_module_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/namespace/no_module_specified.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/namespace/objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/namespace/objects.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/namespace/road.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/namespace/road.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/namespace/sky.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/namespace/sky.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/namespace/subcontext.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/namespace/subcontext.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/non_singleton/air.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/non_singleton/air.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/non_singleton/fat_cat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/non_singleton/fat_cat.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/non_singleton/objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/non_singleton/objects.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/non_singleton/pig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/non_singleton/pig.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/non_singleton/thread_spinner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/non_singleton/thread_spinner.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/non_singleton/tick.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/non_singleton/tick.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/non_singleton/yard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/non_singleton/yard.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/yak/core_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/yak/core_model.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/yak/core_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/yak/core_presenter.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/yak/core_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/yak/core_view.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/yak/data_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/yak/data_source.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/yak/fringe_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/yak/fringe_model.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/yak/fringe_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/yak/fringe_presenter.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/yak/fringe_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/yak/fringe_view.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/yak/giant_squid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/yak/giant_squid.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/yak/krill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/yak/krill.rb -------------------------------------------------------------------------------- /vendor/diy/test/files/yak/my_objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/yak/my_objects.yml -------------------------------------------------------------------------------- /vendor/diy/test/files/yak/sub_sub_context_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/files/yak/sub_sub_context_test.yml -------------------------------------------------------------------------------- /vendor/diy/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThrowTheSwitch/Ceedling/HEAD/vendor/diy/test/test_helper.rb --------------------------------------------------------------------------------