├── .codeclimate.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.ruby-19 ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── cc-tddium-post-worker ├── ci └── codeclimate-test-reporter ├── circle.yml ├── codeclimate-test-reporter.gemspec ├── config └── cacert.pem ├── lib ├── code_climate │ ├── test_reporter.rb │ └── test_reporter │ │ ├── calculate_blob.rb │ │ ├── ci.rb │ │ ├── client.rb │ │ ├── configuration.rb │ │ ├── exception_message.rb │ │ ├── formatter.rb │ │ ├── git.rb │ │ ├── payload_validator.rb │ │ ├── post_results.rb │ │ ├── shorten_filename.rb │ │ └── version.rb └── codeclimate-test-reporter.rb └── spec ├── code_climate ├── test_reporter │ ├── calculate_blob_spec.rb │ ├── ci_spec.rb │ ├── client_spec.rb │ ├── configuration_spec.rb │ ├── formatter_spec.rb │ ├── git_spec.rb │ ├── payload_validator_spec.rb │ └── shorten_filename_spec.rb └── test_reporter_spec.rb ├── fixtures ├── encoding_test.rb ├── encoding_test_iso.rb ├── fake_project.tar.gz ├── issue_7.tar.gz ├── issue_7_resultset.json └── test_file.rb ├── spec_helper.rb └── support ├── fixture_helper.rb ├── io_helper.rb └── requests_helper.rb /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | --order rand 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.ruby-19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/Gemfile.ruby-19 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/cc-tddium-post-worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/bin/cc-tddium-post-worker -------------------------------------------------------------------------------- /bin/ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/bin/ci -------------------------------------------------------------------------------- /bin/codeclimate-test-reporter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/bin/codeclimate-test-reporter -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/circle.yml -------------------------------------------------------------------------------- /codeclimate-test-reporter.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/codeclimate-test-reporter.gemspec -------------------------------------------------------------------------------- /config/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/config/cacert.pem -------------------------------------------------------------------------------- /lib/code_climate/test_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/code_climate/test_reporter.rb -------------------------------------------------------------------------------- /lib/code_climate/test_reporter/calculate_blob.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/code_climate/test_reporter/calculate_blob.rb -------------------------------------------------------------------------------- /lib/code_climate/test_reporter/ci.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/code_climate/test_reporter/ci.rb -------------------------------------------------------------------------------- /lib/code_climate/test_reporter/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/code_climate/test_reporter/client.rb -------------------------------------------------------------------------------- /lib/code_climate/test_reporter/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/code_climate/test_reporter/configuration.rb -------------------------------------------------------------------------------- /lib/code_climate/test_reporter/exception_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/code_climate/test_reporter/exception_message.rb -------------------------------------------------------------------------------- /lib/code_climate/test_reporter/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/code_climate/test_reporter/formatter.rb -------------------------------------------------------------------------------- /lib/code_climate/test_reporter/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/code_climate/test_reporter/git.rb -------------------------------------------------------------------------------- /lib/code_climate/test_reporter/payload_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/code_climate/test_reporter/payload_validator.rb -------------------------------------------------------------------------------- /lib/code_climate/test_reporter/post_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/code_climate/test_reporter/post_results.rb -------------------------------------------------------------------------------- /lib/code_climate/test_reporter/shorten_filename.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/code_climate/test_reporter/shorten_filename.rb -------------------------------------------------------------------------------- /lib/code_climate/test_reporter/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/code_climate/test_reporter/version.rb -------------------------------------------------------------------------------- /lib/codeclimate-test-reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/lib/codeclimate-test-reporter.rb -------------------------------------------------------------------------------- /spec/code_climate/test_reporter/calculate_blob_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/code_climate/test_reporter/calculate_blob_spec.rb -------------------------------------------------------------------------------- /spec/code_climate/test_reporter/ci_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/code_climate/test_reporter/ci_spec.rb -------------------------------------------------------------------------------- /spec/code_climate/test_reporter/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/code_climate/test_reporter/client_spec.rb -------------------------------------------------------------------------------- /spec/code_climate/test_reporter/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/code_climate/test_reporter/configuration_spec.rb -------------------------------------------------------------------------------- /spec/code_climate/test_reporter/formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/code_climate/test_reporter/formatter_spec.rb -------------------------------------------------------------------------------- /spec/code_climate/test_reporter/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/code_climate/test_reporter/git_spec.rb -------------------------------------------------------------------------------- /spec/code_climate/test_reporter/payload_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/code_climate/test_reporter/payload_validator_spec.rb -------------------------------------------------------------------------------- /spec/code_climate/test_reporter/shorten_filename_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/code_climate/test_reporter/shorten_filename_spec.rb -------------------------------------------------------------------------------- /spec/code_climate/test_reporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/code_climate/test_reporter_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/encoding_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/fixtures/encoding_test.rb -------------------------------------------------------------------------------- /spec/fixtures/encoding_test_iso.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/fixtures/encoding_test_iso.rb -------------------------------------------------------------------------------- /spec/fixtures/fake_project.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/fixtures/fake_project.tar.gz -------------------------------------------------------------------------------- /spec/fixtures/issue_7.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/fixtures/issue_7.tar.gz -------------------------------------------------------------------------------- /spec/fixtures/issue_7_resultset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/fixtures/issue_7_resultset.json -------------------------------------------------------------------------------- /spec/fixtures/test_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/fixtures/test_file.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/fixture_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/support/fixture_helper.rb -------------------------------------------------------------------------------- /spec/support/io_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/support/io_helper.rb -------------------------------------------------------------------------------- /spec/support/requests_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/ruby-test-reporter/HEAD/spec/support/requests_helper.rb --------------------------------------------------------------------------------