├── .github ├── dependabot.yml └── workflows │ ├── push_gem.yml │ ├── stable.yml │ └── unstable.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .yardopts ├── CHANGELOG.md ├── CHANGELOG.old.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── Rakefile ├── benchmarks └── result.rb ├── cucumber.yml ├── doc ├── alternate-formatters.md ├── commercial-services.md └── editor-integration.md ├── features ├── branch_coverage.feature ├── config_autoload.feature ├── config_command_name.feature ├── config_coverage_dir.feature ├── config_deactivate_merging.feature ├── config_enable_for_subprocesses.feature ├── config_formatters.feature ├── config_json_formatter.feature ├── config_merge_timeout.feature ├── config_nocov_token.feature ├── config_profiles.feature ├── config_project_name.feature ├── config_root.feature ├── config_styles.feature ├── config_tracked_files.feature ├── config_tracked_files_relevant_lines.feature ├── cucumber_basic.feature ├── encoding.feature ├── maximum_coverage_drop.feature ├── merging_test_unit_and_rspec.feature ├── minimum_coverage.feature ├── minimum_coverage_by_file.feature ├── minitest_basic.feature ├── old_version_json.feature ├── pagination.feature ├── parallel_tests.feature ├── refuse_coverage_drop.feature ├── rspec_basic.feature ├── rspec_failing.feature ├── rspec_fails_on_initialization.feature ├── rspec_groups_and_filters_basic.feature ├── rspec_groups_and_filters_complex.feature ├── rspec_groups_using_filter_class.feature ├── rspec_rails.feature ├── rspec_without_simplecov.feature ├── skipping_code_blocks_manually.feature ├── step_definitions │ ├── html_steps.rb │ ├── json_steps.rb │ ├── old_coverage_json_steps.rb │ ├── parallel_tests_steps.rb │ ├── parameter_types.rb │ ├── simplecov_steps.rb │ └── web_steps.rb ├── support │ └── env.rb ├── test_unit_basic.feature ├── test_unit_collate.feature ├── test_unit_groups_and_filters_basic.feature ├── test_unit_groups_and_filters_complex.feature ├── test_unit_groups_using_filter_class.feature ├── test_unit_without_simplecov.feature ├── unicode_compatiblity.feature └── warnings.feature ├── lib ├── minitest │ └── simplecov_plugin.rb ├── simplecov.rb └── simplecov │ ├── combine.rb │ ├── combine │ ├── branches_combiner.rb │ ├── files_combiner.rb │ ├── lines_combiner.rb │ └── results_combiner.rb │ ├── command_guesser.rb │ ├── configuration.rb │ ├── coverage_statistics.rb │ ├── default_formatter.rb │ ├── defaults.rb │ ├── exit_codes.rb │ ├── exit_codes │ ├── exit_code_handling.rb │ ├── maximum_coverage_drop_check.rb │ ├── minimum_coverage_by_file_check.rb │ └── minimum_overall_coverage_check.rb │ ├── file_list.rb │ ├── filter.rb │ ├── formatter.rb │ ├── formatter │ ├── multi_formatter.rb │ └── simple_formatter.rb │ ├── last_run.rb │ ├── lines_classifier.rb │ ├── load_global_config.rb │ ├── no_defaults.rb │ ├── process.rb │ ├── profiles.rb │ ├── profiles │ ├── bundler_filter.rb │ ├── hidden_filter.rb │ ├── rails.rb │ ├── root_filter.rb │ └── test_frameworks.rb │ ├── result.rb │ ├── result_adapter.rb │ ├── result_merger.rb │ ├── simulate_coverage.rb │ ├── source_file.rb │ ├── source_file │ ├── branch.rb │ └── line.rb │ ├── useless_results_remover.rb │ └── version.rb ├── simplecov.gemspec ├── spec ├── combine │ └── results_combiner_spec.rb ├── command_guesser_spec.rb ├── config_loader_spec.rb ├── configuration_spec.rb ├── coverage_for_eval_spec.rb ├── coverage_statistics_spec.rb ├── default_formatter_spec.rb ├── defaults_spec.rb ├── deleted_source_spec.rb ├── exit_codes │ ├── maximum_coverage_drop_check_spec.rb │ ├── minimum_coverage_by_file_check_spec.rb │ └── minimum_overall_coverage_check_spec.rb ├── file_list_spec.rb ├── filters_spec.rb ├── fixtures │ ├── app │ │ ├── controllers │ │ │ └── sample_controller.rb │ │ └── models │ │ │ └── user.rb │ ├── branch_tester_script.rb │ ├── branches.rb │ ├── case.rb │ ├── case_without_else.rb │ ├── conditionally_loaded_1.rb │ ├── conditionally_loaded_2.rb │ ├── coverer.rb │ ├── deleted_source_sample.rb │ ├── elsif.rb │ ├── empty_euc-jp.rb │ ├── euc-jp-shebang.rb │ ├── euc-jp.rb │ ├── eval_test │ │ ├── eval_test.erb │ │ └── eval_test.rb │ ├── frameworks │ │ ├── rspec_bad.rb │ │ ├── rspec_good.rb │ │ ├── testunit_bad.rb │ │ └── testunit_good.rb │ ├── inline.rb │ ├── iso-8859.rb │ ├── nested_branches.rb │ ├── never.rb │ ├── nocov_complex.rb │ ├── parallel_tests.rb │ ├── resultset1.rb │ ├── resultset2.rb │ ├── sample.rb │ ├── single_nocov.rb │ ├── skipped.rb │ ├── skipped_and_executed.rb │ ├── uneven_nocovs.rb │ ├── utf-8-magic.rb │ └── utf-8.rb ├── gemspec_spec.rb ├── helper.rb ├── last_run_spec.rb ├── lines_classifier_spec.rb ├── multi_formatter_spec.rb ├── result_merger_spec.rb ├── result_spec.rb ├── return_codes_spec.rb ├── simplecov_spec.rb ├── source_file │ ├── branch_spec.rb │ └── line_spec.rb ├── source_file_spec.rb ├── support │ └── fail_rspec_on_ruby_warning.rb └── useless_results_remover_spec.rb └── test_projects ├── encodings ├── lib │ ├── euc_jp.rb │ ├── euc_jp_not_declared.rb │ ├── euc_jp_not_declared_tracked.rb │ └── utf8.rb └── spec │ ├── simple_spec.rb │ └── spec_helper.rb ├── faked_project ├── Rakefile ├── bad_spec │ ├── fail_with_5.rb │ ├── failing_spec.rb │ └── spec_helper.rb ├── cucumber.yml ├── features │ ├── step_definitions │ │ └── my_steps.rb │ ├── support │ │ └── env.rb │ └── test_stuff.feature ├── lib │ ├── faked_project.rb │ └── faked_project │ │ ├── framework_specific.rb │ │ ├── meta_magic.rb │ │ ├── some_class.rb │ │ └── untested_class.rb ├── minitest │ ├── other_test.rb │ ├── some_test.rb │ └── test_helper.rb ├── spec │ ├── faked_spec.rb │ ├── forking_spec.rb │ ├── meta_magic_spec.rb │ ├── some_class_spec.rb │ └── spec_helper.rb └── test │ ├── faked_test.rb │ ├── meta_magic_test.rb │ ├── some_class_test.rb │ └── test_helper.rb ├── monorepo ├── Gemfile ├── Gemfile.lock ├── base │ ├── base.gemspec │ └── lib │ │ └── monorepo │ │ └── base.rb ├── bin │ └── rspec_binstub_that_chdirs └── extra │ ├── extra.gemspec │ ├── lib │ └── monorepo │ │ └── extra.rb │ └── spec │ ├── extra_spec.rb │ └── spec_helper.rb ├── old_coverage_json ├── .rspec ├── coverage │ ├── .last_run.json │ ├── .resultset.json │ └── .resultset.json.lock ├── lib │ └── code.rb └── spec │ ├── code_spec.rb │ └── spec_helper.rb ├── pagination ├── .rspec ├── lib │ ├── a.rb │ ├── b.rb │ ├── c.rb │ ├── d.rb │ ├── e.rb │ ├── f.rb │ ├── g.rb │ ├── h.rb │ ├── i.rb │ ├── j.rb │ ├── k.rb │ └── l.rb └── spec │ └── spec_helper.rb ├── parallel_tests ├── .rspec ├── Gemfile ├── Gemfile.lock ├── lib │ ├── a.rb │ ├── all.rb │ ├── b.rb │ ├── c.rb │ └── d.rb └── spec │ ├── a_spec.rb │ ├── b_spec.rb │ ├── c_spec.rb │ ├── d_spec.rb │ └── spec_helper.rb ├── rails ├── README.md └── rspec_rails │ ├── .gitignore │ ├── .rspec │ ├── Gemfile │ ├── Rakefile │ ├── app │ ├── controllers │ │ └── application_controller.rb │ ├── helpers │ │ └── application_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── models │ │ ├── application_record.rb │ │ └── foo.rb │ └── views │ │ └── layouts │ │ └── application.html.erb │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ └── test.rb │ ├── initializers │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ └── wrap_parameters.rb │ ├── puma.rb │ ├── routes.rb │ └── spring.rb │ └── spec │ ├── foo_spec.rb │ ├── rails_helper.rb │ └── spec_helper.rb └── subprocesses ├── .simplecov ├── .simplecov_spawn.rb ├── lib ├── command └── subprocesses.rb └── spec ├── simple_spec.rb ├── spawn_spec.rb └── spec_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/push_gem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/.github/workflows/push_gem.yml -------------------------------------------------------------------------------- /.github/workflows/stable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/.github/workflows/stable.yml -------------------------------------------------------------------------------- /.github/workflows/unstable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/.github/workflows/unstable.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --order random 3 | --warning 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- 1 | - **/*.md 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/CHANGELOG.old.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/Rakefile -------------------------------------------------------------------------------- /benchmarks/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/benchmarks/result.rb -------------------------------------------------------------------------------- /cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/cucumber.yml -------------------------------------------------------------------------------- /doc/alternate-formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/doc/alternate-formatters.md -------------------------------------------------------------------------------- /doc/commercial-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/doc/commercial-services.md -------------------------------------------------------------------------------- /doc/editor-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/doc/editor-integration.md -------------------------------------------------------------------------------- /features/branch_coverage.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/branch_coverage.feature -------------------------------------------------------------------------------- /features/config_autoload.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_autoload.feature -------------------------------------------------------------------------------- /features/config_command_name.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_command_name.feature -------------------------------------------------------------------------------- /features/config_coverage_dir.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_coverage_dir.feature -------------------------------------------------------------------------------- /features/config_deactivate_merging.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_deactivate_merging.feature -------------------------------------------------------------------------------- /features/config_enable_for_subprocesses.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_enable_for_subprocesses.feature -------------------------------------------------------------------------------- /features/config_formatters.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_formatters.feature -------------------------------------------------------------------------------- /features/config_json_formatter.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_json_formatter.feature -------------------------------------------------------------------------------- /features/config_merge_timeout.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_merge_timeout.feature -------------------------------------------------------------------------------- /features/config_nocov_token.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_nocov_token.feature -------------------------------------------------------------------------------- /features/config_profiles.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_profiles.feature -------------------------------------------------------------------------------- /features/config_project_name.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_project_name.feature -------------------------------------------------------------------------------- /features/config_root.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_root.feature -------------------------------------------------------------------------------- /features/config_styles.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_styles.feature -------------------------------------------------------------------------------- /features/config_tracked_files.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_tracked_files.feature -------------------------------------------------------------------------------- /features/config_tracked_files_relevant_lines.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/config_tracked_files_relevant_lines.feature -------------------------------------------------------------------------------- /features/cucumber_basic.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/cucumber_basic.feature -------------------------------------------------------------------------------- /features/encoding.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/encoding.feature -------------------------------------------------------------------------------- /features/maximum_coverage_drop.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/maximum_coverage_drop.feature -------------------------------------------------------------------------------- /features/merging_test_unit_and_rspec.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/merging_test_unit_and_rspec.feature -------------------------------------------------------------------------------- /features/minimum_coverage.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/minimum_coverage.feature -------------------------------------------------------------------------------- /features/minimum_coverage_by_file.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/minimum_coverage_by_file.feature -------------------------------------------------------------------------------- /features/minitest_basic.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/minitest_basic.feature -------------------------------------------------------------------------------- /features/old_version_json.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/old_version_json.feature -------------------------------------------------------------------------------- /features/pagination.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/pagination.feature -------------------------------------------------------------------------------- /features/parallel_tests.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/parallel_tests.feature -------------------------------------------------------------------------------- /features/refuse_coverage_drop.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/refuse_coverage_drop.feature -------------------------------------------------------------------------------- /features/rspec_basic.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/rspec_basic.feature -------------------------------------------------------------------------------- /features/rspec_failing.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/rspec_failing.feature -------------------------------------------------------------------------------- /features/rspec_fails_on_initialization.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/rspec_fails_on_initialization.feature -------------------------------------------------------------------------------- /features/rspec_groups_and_filters_basic.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/rspec_groups_and_filters_basic.feature -------------------------------------------------------------------------------- /features/rspec_groups_and_filters_complex.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/rspec_groups_and_filters_complex.feature -------------------------------------------------------------------------------- /features/rspec_groups_using_filter_class.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/rspec_groups_using_filter_class.feature -------------------------------------------------------------------------------- /features/rspec_rails.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/rspec_rails.feature -------------------------------------------------------------------------------- /features/rspec_without_simplecov.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/rspec_without_simplecov.feature -------------------------------------------------------------------------------- /features/skipping_code_blocks_manually.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/skipping_code_blocks_manually.feature -------------------------------------------------------------------------------- /features/step_definitions/html_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/step_definitions/html_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/json_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/step_definitions/json_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/old_coverage_json_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/step_definitions/old_coverage_json_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/parallel_tests_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/step_definitions/parallel_tests_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/parameter_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/step_definitions/parameter_types.rb -------------------------------------------------------------------------------- /features/step_definitions/simplecov_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/step_definitions/simplecov_steps.rb -------------------------------------------------------------------------------- /features/step_definitions/web_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/step_definitions/web_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/test_unit_basic.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/test_unit_basic.feature -------------------------------------------------------------------------------- /features/test_unit_collate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/test_unit_collate.feature -------------------------------------------------------------------------------- /features/test_unit_groups_and_filters_basic.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/test_unit_groups_and_filters_basic.feature -------------------------------------------------------------------------------- /features/test_unit_groups_and_filters_complex.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/test_unit_groups_and_filters_complex.feature -------------------------------------------------------------------------------- /features/test_unit_groups_using_filter_class.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/test_unit_groups_using_filter_class.feature -------------------------------------------------------------------------------- /features/test_unit_without_simplecov.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/test_unit_without_simplecov.feature -------------------------------------------------------------------------------- /features/unicode_compatiblity.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/unicode_compatiblity.feature -------------------------------------------------------------------------------- /features/warnings.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/features/warnings.feature -------------------------------------------------------------------------------- /lib/minitest/simplecov_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/minitest/simplecov_plugin.rb -------------------------------------------------------------------------------- /lib/simplecov.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov.rb -------------------------------------------------------------------------------- /lib/simplecov/combine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/combine.rb -------------------------------------------------------------------------------- /lib/simplecov/combine/branches_combiner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/combine/branches_combiner.rb -------------------------------------------------------------------------------- /lib/simplecov/combine/files_combiner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/combine/files_combiner.rb -------------------------------------------------------------------------------- /lib/simplecov/combine/lines_combiner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/combine/lines_combiner.rb -------------------------------------------------------------------------------- /lib/simplecov/combine/results_combiner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/combine/results_combiner.rb -------------------------------------------------------------------------------- /lib/simplecov/command_guesser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/command_guesser.rb -------------------------------------------------------------------------------- /lib/simplecov/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/configuration.rb -------------------------------------------------------------------------------- /lib/simplecov/coverage_statistics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/coverage_statistics.rb -------------------------------------------------------------------------------- /lib/simplecov/default_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/default_formatter.rb -------------------------------------------------------------------------------- /lib/simplecov/defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/defaults.rb -------------------------------------------------------------------------------- /lib/simplecov/exit_codes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/exit_codes.rb -------------------------------------------------------------------------------- /lib/simplecov/exit_codes/exit_code_handling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/exit_codes/exit_code_handling.rb -------------------------------------------------------------------------------- /lib/simplecov/exit_codes/maximum_coverage_drop_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/exit_codes/maximum_coverage_drop_check.rb -------------------------------------------------------------------------------- /lib/simplecov/exit_codes/minimum_coverage_by_file_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/exit_codes/minimum_coverage_by_file_check.rb -------------------------------------------------------------------------------- /lib/simplecov/exit_codes/minimum_overall_coverage_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/exit_codes/minimum_overall_coverage_check.rb -------------------------------------------------------------------------------- /lib/simplecov/file_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/file_list.rb -------------------------------------------------------------------------------- /lib/simplecov/filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/filter.rb -------------------------------------------------------------------------------- /lib/simplecov/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/formatter.rb -------------------------------------------------------------------------------- /lib/simplecov/formatter/multi_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/formatter/multi_formatter.rb -------------------------------------------------------------------------------- /lib/simplecov/formatter/simple_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/formatter/simple_formatter.rb -------------------------------------------------------------------------------- /lib/simplecov/last_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/last_run.rb -------------------------------------------------------------------------------- /lib/simplecov/lines_classifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/lines_classifier.rb -------------------------------------------------------------------------------- /lib/simplecov/load_global_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/load_global_config.rb -------------------------------------------------------------------------------- /lib/simplecov/no_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/no_defaults.rb -------------------------------------------------------------------------------- /lib/simplecov/process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/process.rb -------------------------------------------------------------------------------- /lib/simplecov/profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/profiles.rb -------------------------------------------------------------------------------- /lib/simplecov/profiles/bundler_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/profiles/bundler_filter.rb -------------------------------------------------------------------------------- /lib/simplecov/profiles/hidden_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/profiles/hidden_filter.rb -------------------------------------------------------------------------------- /lib/simplecov/profiles/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/profiles/rails.rb -------------------------------------------------------------------------------- /lib/simplecov/profiles/root_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/profiles/root_filter.rb -------------------------------------------------------------------------------- /lib/simplecov/profiles/test_frameworks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/profiles/test_frameworks.rb -------------------------------------------------------------------------------- /lib/simplecov/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/result.rb -------------------------------------------------------------------------------- /lib/simplecov/result_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/result_adapter.rb -------------------------------------------------------------------------------- /lib/simplecov/result_merger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/result_merger.rb -------------------------------------------------------------------------------- /lib/simplecov/simulate_coverage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/simulate_coverage.rb -------------------------------------------------------------------------------- /lib/simplecov/source_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/source_file.rb -------------------------------------------------------------------------------- /lib/simplecov/source_file/branch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/source_file/branch.rb -------------------------------------------------------------------------------- /lib/simplecov/source_file/line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/source_file/line.rb -------------------------------------------------------------------------------- /lib/simplecov/useless_results_remover.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/lib/simplecov/useless_results_remover.rb -------------------------------------------------------------------------------- /lib/simplecov/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module SimpleCov 4 | VERSION = "0.22.0" 5 | end 6 | -------------------------------------------------------------------------------- /simplecov.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/simplecov.gemspec -------------------------------------------------------------------------------- /spec/combine/results_combiner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/combine/results_combiner_spec.rb -------------------------------------------------------------------------------- /spec/command_guesser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/command_guesser_spec.rb -------------------------------------------------------------------------------- /spec/config_loader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/config_loader_spec.rb -------------------------------------------------------------------------------- /spec/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/configuration_spec.rb -------------------------------------------------------------------------------- /spec/coverage_for_eval_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/coverage_for_eval_spec.rb -------------------------------------------------------------------------------- /spec/coverage_statistics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/coverage_statistics_spec.rb -------------------------------------------------------------------------------- /spec/default_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/default_formatter_spec.rb -------------------------------------------------------------------------------- /spec/defaults_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/defaults_spec.rb -------------------------------------------------------------------------------- /spec/deleted_source_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/deleted_source_spec.rb -------------------------------------------------------------------------------- /spec/exit_codes/maximum_coverage_drop_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/exit_codes/maximum_coverage_drop_check_spec.rb -------------------------------------------------------------------------------- /spec/exit_codes/minimum_coverage_by_file_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/exit_codes/minimum_coverage_by_file_check_spec.rb -------------------------------------------------------------------------------- /spec/exit_codes/minimum_overall_coverage_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/exit_codes/minimum_overall_coverage_check_spec.rb -------------------------------------------------------------------------------- /spec/file_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/file_list_spec.rb -------------------------------------------------------------------------------- /spec/filters_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/filters_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/app/controllers/sample_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/app/controllers/sample_controller.rb -------------------------------------------------------------------------------- /spec/fixtures/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/app/models/user.rb -------------------------------------------------------------------------------- /spec/fixtures/branch_tester_script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/branch_tester_script.rb -------------------------------------------------------------------------------- /spec/fixtures/branches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/branches.rb -------------------------------------------------------------------------------- /spec/fixtures/case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/case.rb -------------------------------------------------------------------------------- /spec/fixtures/case_without_else.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/case_without_else.rb -------------------------------------------------------------------------------- /spec/fixtures/conditionally_loaded_1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/conditionally_loaded_1.rb -------------------------------------------------------------------------------- /spec/fixtures/conditionally_loaded_2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/conditionally_loaded_2.rb -------------------------------------------------------------------------------- /spec/fixtures/coverer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/coverer.rb -------------------------------------------------------------------------------- /spec/fixtures/deleted_source_sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/deleted_source_sample.rb -------------------------------------------------------------------------------- /spec/fixtures/elsif.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/elsif.rb -------------------------------------------------------------------------------- /spec/fixtures/empty_euc-jp.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/euc-jp-shebang.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/euc-jp-shebang.rb -------------------------------------------------------------------------------- /spec/fixtures/euc-jp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/euc-jp.rb -------------------------------------------------------------------------------- /spec/fixtures/eval_test/eval_test.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/eval_test/eval_test.erb -------------------------------------------------------------------------------- /spec/fixtures/eval_test/eval_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/eval_test/eval_test.rb -------------------------------------------------------------------------------- /spec/fixtures/frameworks/rspec_bad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/frameworks/rspec_bad.rb -------------------------------------------------------------------------------- /spec/fixtures/frameworks/rspec_good.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/frameworks/rspec_good.rb -------------------------------------------------------------------------------- /spec/fixtures/frameworks/testunit_bad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/frameworks/testunit_bad.rb -------------------------------------------------------------------------------- /spec/fixtures/frameworks/testunit_good.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/frameworks/testunit_good.rb -------------------------------------------------------------------------------- /spec/fixtures/inline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/inline.rb -------------------------------------------------------------------------------- /spec/fixtures/iso-8859.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/iso-8859.rb -------------------------------------------------------------------------------- /spec/fixtures/nested_branches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/nested_branches.rb -------------------------------------------------------------------------------- /spec/fixtures/never.rb: -------------------------------------------------------------------------------- 1 | # This class is purely some 2 | # comments 3 | -------------------------------------------------------------------------------- /spec/fixtures/nocov_complex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/nocov_complex.rb -------------------------------------------------------------------------------- /spec/fixtures/parallel_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/parallel_tests.rb -------------------------------------------------------------------------------- /spec/fixtures/resultset1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/resultset1.rb -------------------------------------------------------------------------------- /spec/fixtures/resultset2.rb: -------------------------------------------------------------------------------- 1 | class Resultset 2 | VERSION = 2 3 | end 4 | -------------------------------------------------------------------------------- /spec/fixtures/sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/sample.rb -------------------------------------------------------------------------------- /spec/fixtures/single_nocov.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/single_nocov.rb -------------------------------------------------------------------------------- /spec/fixtures/skipped.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/skipped.rb -------------------------------------------------------------------------------- /spec/fixtures/skipped_and_executed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/skipped_and_executed.rb -------------------------------------------------------------------------------- /spec/fixtures/uneven_nocovs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/fixtures/uneven_nocovs.rb -------------------------------------------------------------------------------- /spec/fixtures/utf-8-magic.rb: -------------------------------------------------------------------------------- 1 | # encoding: UTF-8 2 | puts "135°C" 3 | -------------------------------------------------------------------------------- /spec/fixtures/utf-8.rb: -------------------------------------------------------------------------------- 1 | puts "135°C" 2 | -------------------------------------------------------------------------------- /spec/gemspec_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/gemspec_spec.rb -------------------------------------------------------------------------------- /spec/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/helper.rb -------------------------------------------------------------------------------- /spec/last_run_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/last_run_spec.rb -------------------------------------------------------------------------------- /spec/lines_classifier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/lines_classifier_spec.rb -------------------------------------------------------------------------------- /spec/multi_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/multi_formatter_spec.rb -------------------------------------------------------------------------------- /spec/result_merger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/result_merger_spec.rb -------------------------------------------------------------------------------- /spec/result_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/result_spec.rb -------------------------------------------------------------------------------- /spec/return_codes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/return_codes_spec.rb -------------------------------------------------------------------------------- /spec/simplecov_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/simplecov_spec.rb -------------------------------------------------------------------------------- /spec/source_file/branch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/source_file/branch_spec.rb -------------------------------------------------------------------------------- /spec/source_file/line_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/source_file/line_spec.rb -------------------------------------------------------------------------------- /spec/source_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/source_file_spec.rb -------------------------------------------------------------------------------- /spec/support/fail_rspec_on_ruby_warning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/support/fail_rspec_on_ruby_warning.rb -------------------------------------------------------------------------------- /spec/useless_results_remover_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/spec/useless_results_remover_spec.rb -------------------------------------------------------------------------------- /test_projects/encodings/lib/euc_jp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/encodings/lib/euc_jp.rb -------------------------------------------------------------------------------- /test_projects/encodings/lib/euc_jp_not_declared.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/encodings/lib/euc_jp_not_declared.rb -------------------------------------------------------------------------------- /test_projects/encodings/lib/euc_jp_not_declared_tracked.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/encodings/lib/euc_jp_not_declared_tracked.rb -------------------------------------------------------------------------------- /test_projects/encodings/lib/utf8.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/encodings/lib/utf8.rb -------------------------------------------------------------------------------- /test_projects/encodings/spec/simple_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/encodings/spec/simple_spec.rb -------------------------------------------------------------------------------- /test_projects/encodings/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/encodings/spec/spec_helper.rb -------------------------------------------------------------------------------- /test_projects/faked_project/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/Rakefile -------------------------------------------------------------------------------- /test_projects/faked_project/bad_spec/fail_with_5.rb: -------------------------------------------------------------------------------- 1 | require_relative "spec_helper" 2 | 3 | exit(5) 4 | -------------------------------------------------------------------------------- /test_projects/faked_project/bad_spec/failing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/bad_spec/failing_spec.rb -------------------------------------------------------------------------------- /test_projects/faked_project/bad_spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/bad_spec/spec_helper.rb -------------------------------------------------------------------------------- /test_projects/faked_project/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/cucumber.yml -------------------------------------------------------------------------------- /test_projects/faked_project/features/step_definitions/my_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/features/step_definitions/my_steps.rb -------------------------------------------------------------------------------- /test_projects/faked_project/features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/features/support/env.rb -------------------------------------------------------------------------------- /test_projects/faked_project/features/test_stuff.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/features/test_stuff.feature -------------------------------------------------------------------------------- /test_projects/faked_project/lib/faked_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/lib/faked_project.rb -------------------------------------------------------------------------------- /test_projects/faked_project/lib/faked_project/framework_specific.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/lib/faked_project/framework_specific.rb -------------------------------------------------------------------------------- /test_projects/faked_project/lib/faked_project/meta_magic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/lib/faked_project/meta_magic.rb -------------------------------------------------------------------------------- /test_projects/faked_project/lib/faked_project/some_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/lib/faked_project/some_class.rb -------------------------------------------------------------------------------- /test_projects/faked_project/lib/faked_project/untested_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/lib/faked_project/untested_class.rb -------------------------------------------------------------------------------- /test_projects/faked_project/minitest/other_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/minitest/other_test.rb -------------------------------------------------------------------------------- /test_projects/faked_project/minitest/some_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/minitest/some_test.rb -------------------------------------------------------------------------------- /test_projects/faked_project/minitest/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/minitest/test_helper.rb -------------------------------------------------------------------------------- /test_projects/faked_project/spec/faked_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/spec/faked_spec.rb -------------------------------------------------------------------------------- /test_projects/faked_project/spec/forking_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/spec/forking_spec.rb -------------------------------------------------------------------------------- /test_projects/faked_project/spec/meta_magic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/spec/meta_magic_spec.rb -------------------------------------------------------------------------------- /test_projects/faked_project/spec/some_class_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/spec/some_class_spec.rb -------------------------------------------------------------------------------- /test_projects/faked_project/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/spec/spec_helper.rb -------------------------------------------------------------------------------- /test_projects/faked_project/test/faked_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/test/faked_test.rb -------------------------------------------------------------------------------- /test_projects/faked_project/test/meta_magic_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/test/meta_magic_test.rb -------------------------------------------------------------------------------- /test_projects/faked_project/test/some_class_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/test/some_class_test.rb -------------------------------------------------------------------------------- /test_projects/faked_project/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/faked_project/test/test_helper.rb -------------------------------------------------------------------------------- /test_projects/monorepo/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/monorepo/Gemfile -------------------------------------------------------------------------------- /test_projects/monorepo/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/monorepo/Gemfile.lock -------------------------------------------------------------------------------- /test_projects/monorepo/base/base.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/monorepo/base/base.gemspec -------------------------------------------------------------------------------- /test_projects/monorepo/base/lib/monorepo/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/monorepo/base/lib/monorepo/base.rb -------------------------------------------------------------------------------- /test_projects/monorepo/bin/rspec_binstub_that_chdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/monorepo/bin/rspec_binstub_that_chdirs -------------------------------------------------------------------------------- /test_projects/monorepo/extra/extra.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/monorepo/extra/extra.gemspec -------------------------------------------------------------------------------- /test_projects/monorepo/extra/lib/monorepo/extra.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/monorepo/extra/lib/monorepo/extra.rb -------------------------------------------------------------------------------- /test_projects/monorepo/extra/spec/extra_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/monorepo/extra/spec/extra_spec.rb -------------------------------------------------------------------------------- /test_projects/monorepo/extra/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/monorepo/extra/spec/spec_helper.rb -------------------------------------------------------------------------------- /test_projects/old_coverage_json/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /test_projects/old_coverage_json/coverage/.last_run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/old_coverage_json/coverage/.last_run.json -------------------------------------------------------------------------------- /test_projects/old_coverage_json/coverage/.resultset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/old_coverage_json/coverage/.resultset.json -------------------------------------------------------------------------------- /test_projects/old_coverage_json/coverage/.resultset.json.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/old_coverage_json/lib/code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/old_coverage_json/lib/code.rb -------------------------------------------------------------------------------- /test_projects/old_coverage_json/spec/code_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/old_coverage_json/spec/code_spec.rb -------------------------------------------------------------------------------- /test_projects/old_coverage_json/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/old_coverage_json/spec/spec_helper.rb -------------------------------------------------------------------------------- /test_projects/pagination/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /test_projects/pagination/lib/a.rb: -------------------------------------------------------------------------------- 1 | # nothing to see here 2 | -------------------------------------------------------------------------------- /test_projects/pagination/lib/b.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/pagination/lib/c.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/pagination/lib/d.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/pagination/lib/e.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/pagination/lib/f.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/pagination/lib/g.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/pagination/lib/h.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/pagination/lib/i.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/pagination/lib/j.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/pagination/lib/k.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/pagination/lib/l.rb: -------------------------------------------------------------------------------- 1 | # nothing to see here 2 | -------------------------------------------------------------------------------- /test_projects/pagination/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/pagination/spec/spec_helper.rb -------------------------------------------------------------------------------- /test_projects/parallel_tests/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /test_projects/parallel_tests/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/parallel_tests/Gemfile -------------------------------------------------------------------------------- /test_projects/parallel_tests/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/parallel_tests/Gemfile.lock -------------------------------------------------------------------------------- /test_projects/parallel_tests/lib/a.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/parallel_tests/lib/a.rb -------------------------------------------------------------------------------- /test_projects/parallel_tests/lib/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/parallel_tests/lib/all.rb -------------------------------------------------------------------------------- /test_projects/parallel_tests/lib/b.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/parallel_tests/lib/b.rb -------------------------------------------------------------------------------- /test_projects/parallel_tests/lib/c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/parallel_tests/lib/c.rb -------------------------------------------------------------------------------- /test_projects/parallel_tests/lib/d.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/parallel_tests/lib/d.rb -------------------------------------------------------------------------------- /test_projects/parallel_tests/spec/a_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/parallel_tests/spec/a_spec.rb -------------------------------------------------------------------------------- /test_projects/parallel_tests/spec/b_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/parallel_tests/spec/b_spec.rb -------------------------------------------------------------------------------- /test_projects/parallel_tests/spec/c_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/parallel_tests/spec/c_spec.rb -------------------------------------------------------------------------------- /test_projects/parallel_tests/spec/d_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/parallel_tests/spec/d_spec.rb -------------------------------------------------------------------------------- /test_projects/parallel_tests/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/parallel_tests/spec/spec_helper.rb -------------------------------------------------------------------------------- /test_projects/rails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/README.md -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/.gitignore: -------------------------------------------------------------------------------- 1 | /log 2 | /db/*.sqlite3 3 | -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/Gemfile -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/Rakefile -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/app/jobs/application_job.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/app/models/application_record.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/app/models/foo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/app/models/foo.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config.ru -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config/application.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config/boot.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config/database.yml -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config/environment.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config/environments/development.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config/environments/test.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config/puma.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config/routes.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/config/spring.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/spec/foo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/spec/foo_spec.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/spec/rails_helper.rb -------------------------------------------------------------------------------- /test_projects/rails/rspec_rails/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/rails/rspec_rails/spec/spec_helper.rb -------------------------------------------------------------------------------- /test_projects/subprocesses/.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/subprocesses/.simplecov -------------------------------------------------------------------------------- /test_projects/subprocesses/.simplecov_spawn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/subprocesses/.simplecov_spawn.rb -------------------------------------------------------------------------------- /test_projects/subprocesses/lib/command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/subprocesses/lib/command -------------------------------------------------------------------------------- /test_projects/subprocesses/lib/subprocesses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/subprocesses/lib/subprocesses.rb -------------------------------------------------------------------------------- /test_projects/subprocesses/spec/simple_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/subprocesses/spec/simple_spec.rb -------------------------------------------------------------------------------- /test_projects/subprocesses/spec/spawn_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/subprocesses/spec/spawn_spec.rb -------------------------------------------------------------------------------- /test_projects/subprocesses/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplecov-ruby/simplecov/HEAD/test_projects/subprocesses/spec/spec_helper.rb --------------------------------------------------------------------------------