├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── .yardopts ├── CONTRIBUTORS ├── Changelog.markdown ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── VERSION ├── coco.gemspec ├── features ├── running.feature ├── step_definitions │ └── running_steps.rb └── support │ └── env.rb ├── lib ├── coco.rb └── coco │ ├── configuration.rb │ ├── cover.rb │ ├── cover │ ├── coverage_result.rb │ ├── coverage_stat.rb │ └── summary.rb │ ├── deprecated_message.rb │ ├── formatter.rb │ ├── formatter │ ├── colored_string.rb │ ├── console_formatter.rb │ ├── context.rb │ ├── html_formatter.rb │ ├── html_index_formatter.rb │ ├── index_context.rb │ ├── index_line.rb │ └── template.rb │ ├── helpers.rb │ ├── lister.rb │ ├── lister │ ├── source_lister.rb │ └── uncovered_lister.rb │ ├── project.rb │ ├── theme.rb │ ├── writer.rb │ └── writer │ ├── file_writer.rb │ ├── html_directory.rb │ ├── html_files_writer.rb │ └── html_index_writer.rb ├── reek.sed ├── spec ├── configuration │ ├── configuration_file_spec.rb │ ├── configuration_legacy_spec.rb │ └── default_configuration_spec.rb ├── configuration_spec.rb ├── cover │ ├── coverage_result_spec.rb │ ├── coverage_stat_spec.rb │ └── summary_spec.rb ├── formatter │ ├── colored_string_spec.rb │ ├── console_formatter_spec.rb │ ├── html_formatter_spec.rb │ ├── html_index_formatter_spec.rb │ └── index_context_spec.rb ├── helper.rb ├── helpers_spec.rb ├── lister │ ├── source_lister_spec.rb │ └── uncovered_lister_spec.rb ├── project │ ├── 3_rb_files │ │ ├── 1.rb │ │ ├── 2.rb │ │ ├── 3.rb │ │ └── TODO │ ├── 4_rb_files │ │ ├── 1.rb │ │ ├── 2.rb │ │ ├── 3.rb │ │ ├── 4.rb │ │ └── TODO │ ├── html_entities.rb │ ├── six_lines.rb │ └── ten_lines.rb ├── project_spec.rb ├── theme_spec.rb └── writer │ ├── html_directory_spec.rb │ ├── html_files_writer_spec.rb │ └── html_index_writer_spec.rb ├── template ├── css │ ├── dark.css │ └── light.css ├── file.erb ├── index.erb └── js │ └── coco.js ├── theme-dark.png └── theme-light.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --order=random 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- 1 | --title "Coco Documentation" 2 | --plugin tomdoc 3 | - 4 | Changelog.markdown 5 | COPYING 6 | VERSION 7 | -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Changelog.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/Changelog.markdown -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.15.0 2 | -------------------------------------------------------------------------------- /coco.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/coco.gemspec -------------------------------------------------------------------------------- /features/running.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/features/running.feature -------------------------------------------------------------------------------- /features/step_definitions/running_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/features/step_definitions/running_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /lib/coco.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco.rb -------------------------------------------------------------------------------- /lib/coco/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/configuration.rb -------------------------------------------------------------------------------- /lib/coco/cover.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/cover.rb -------------------------------------------------------------------------------- /lib/coco/cover/coverage_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/cover/coverage_result.rb -------------------------------------------------------------------------------- /lib/coco/cover/coverage_stat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/cover/coverage_stat.rb -------------------------------------------------------------------------------- /lib/coco/cover/summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/cover/summary.rb -------------------------------------------------------------------------------- /lib/coco/deprecated_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/deprecated_message.rb -------------------------------------------------------------------------------- /lib/coco/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/formatter.rb -------------------------------------------------------------------------------- /lib/coco/formatter/colored_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/formatter/colored_string.rb -------------------------------------------------------------------------------- /lib/coco/formatter/console_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/formatter/console_formatter.rb -------------------------------------------------------------------------------- /lib/coco/formatter/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/formatter/context.rb -------------------------------------------------------------------------------- /lib/coco/formatter/html_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/formatter/html_formatter.rb -------------------------------------------------------------------------------- /lib/coco/formatter/html_index_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/formatter/html_index_formatter.rb -------------------------------------------------------------------------------- /lib/coco/formatter/index_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/formatter/index_context.rb -------------------------------------------------------------------------------- /lib/coco/formatter/index_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/formatter/index_line.rb -------------------------------------------------------------------------------- /lib/coco/formatter/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/formatter/template.rb -------------------------------------------------------------------------------- /lib/coco/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/helpers.rb -------------------------------------------------------------------------------- /lib/coco/lister.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/lister.rb -------------------------------------------------------------------------------- /lib/coco/lister/source_lister.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/lister/source_lister.rb -------------------------------------------------------------------------------- /lib/coco/lister/uncovered_lister.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/lister/uncovered_lister.rb -------------------------------------------------------------------------------- /lib/coco/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/project.rb -------------------------------------------------------------------------------- /lib/coco/theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/theme.rb -------------------------------------------------------------------------------- /lib/coco/writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/writer.rb -------------------------------------------------------------------------------- /lib/coco/writer/file_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/writer/file_writer.rb -------------------------------------------------------------------------------- /lib/coco/writer/html_directory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/writer/html_directory.rb -------------------------------------------------------------------------------- /lib/coco/writer/html_files_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/writer/html_files_writer.rb -------------------------------------------------------------------------------- /lib/coco/writer/html_index_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/lib/coco/writer/html_index_writer.rb -------------------------------------------------------------------------------- /reek.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/reek.sed -------------------------------------------------------------------------------- /spec/configuration/configuration_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/configuration/configuration_file_spec.rb -------------------------------------------------------------------------------- /spec/configuration/configuration_legacy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/configuration/configuration_legacy_spec.rb -------------------------------------------------------------------------------- /spec/configuration/default_configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/configuration/default_configuration_spec.rb -------------------------------------------------------------------------------- /spec/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/configuration_spec.rb -------------------------------------------------------------------------------- /spec/cover/coverage_result_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/cover/coverage_result_spec.rb -------------------------------------------------------------------------------- /spec/cover/coverage_stat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/cover/coverage_stat_spec.rb -------------------------------------------------------------------------------- /spec/cover/summary_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/cover/summary_spec.rb -------------------------------------------------------------------------------- /spec/formatter/colored_string_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/formatter/colored_string_spec.rb -------------------------------------------------------------------------------- /spec/formatter/console_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/formatter/console_formatter_spec.rb -------------------------------------------------------------------------------- /spec/formatter/html_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/formatter/html_formatter_spec.rb -------------------------------------------------------------------------------- /spec/formatter/html_index_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/formatter/html_index_formatter_spec.rb -------------------------------------------------------------------------------- /spec/formatter/index_context_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/formatter/index_context_spec.rb -------------------------------------------------------------------------------- /spec/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/helper.rb -------------------------------------------------------------------------------- /spec/helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/helpers_spec.rb -------------------------------------------------------------------------------- /spec/lister/source_lister_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/lister/source_lister_spec.rb -------------------------------------------------------------------------------- /spec/lister/uncovered_lister_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/lister/uncovered_lister_spec.rb -------------------------------------------------------------------------------- /spec/project/3_rb_files/1.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/project/3_rb_files/2.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/project/3_rb_files/3.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/project/3_rb_files/TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/project/4_rb_files/1.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/project/4_rb_files/2.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/project/4_rb_files/3.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/project/4_rb_files/4.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/project/4_rb_files/TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/project/html_entities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/project/html_entities.rb -------------------------------------------------------------------------------- /spec/project/six_lines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/project/six_lines.rb -------------------------------------------------------------------------------- /spec/project/ten_lines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/project/ten_lines.rb -------------------------------------------------------------------------------- /spec/project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/project_spec.rb -------------------------------------------------------------------------------- /spec/theme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/theme_spec.rb -------------------------------------------------------------------------------- /spec/writer/html_directory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/writer/html_directory_spec.rb -------------------------------------------------------------------------------- /spec/writer/html_files_writer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/writer/html_files_writer_spec.rb -------------------------------------------------------------------------------- /spec/writer/html_index_writer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/spec/writer/html_index_writer_spec.rb -------------------------------------------------------------------------------- /template/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/template/css/dark.css -------------------------------------------------------------------------------- /template/css/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/template/css/light.css -------------------------------------------------------------------------------- /template/file.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/template/file.erb -------------------------------------------------------------------------------- /template/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/template/index.erb -------------------------------------------------------------------------------- /template/js/coco.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/template/js/coco.js -------------------------------------------------------------------------------- /theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/theme-dark.png -------------------------------------------------------------------------------- /theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkdjiin/coco/HEAD/theme-light.png --------------------------------------------------------------------------------