From 4e51aafbf1c6b5cf8dd556dcfed1abde2ae48ce1 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 12 Sep 2026 02:53:39 +0000 Subject: [PATCH] Drop the codeclimate-test-reporter development dependency `CodeClimate::TestReporter.start` only starts SimpleCov when `CODECLIMATE_REPO_TOKEN` is set. Nothing in this repository sets it, so the call has been a no-op: no coverage was measured and nothing was reported. The gem is also deprecated upstream. codeclimate/ruby-test-reporter was archived on 2025-07-19 and its README points at the unified test reporter; its last release, 1.0.9, is from 2018, and the gemspec pinned `~> 0.6.0`, older still. Removing it also drops simplecov, simplecov-html and simplecov_json_formatter from the development bundle. Co-Authored-By: Claude Opus 5 --- ember-cli-rails.gemspec | 1 - spec/spec_helper.rb | 3 --- 2 files changed, 4 deletions(-) diff --git a/ember-cli-rails.gemspec b/ember-cli-rails.gemspec index 45ccabc9..92b6f18a 100644 --- a/ember-cli-rails.gemspec +++ b/ember-cli-rails.gemspec @@ -25,5 +25,4 @@ Gem::Specification.new do |spec| spec.add_development_dependency "rspec-rails", ">= 3.6.0", "< 9.0" spec.add_development_dependency "capybara-selenium" - spec.add_development_dependency "codeclimate-test-reporter", "~> 0.6.0" end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index c2db9448..c2c372b2 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -2,9 +2,6 @@ # progress as it happens, so a slow or stuck job shows where it stopped. $stdout.sync = true -require "codeclimate-test-reporter" -CodeClimate::TestReporter.start - ENV["RAILS_ENV"] = "test" require "dummy/application"