From 06f907cbcd8c67663953a4ca04fce39cec0876ca Mon Sep 17 00:00:00 2001 From: Justin Coyne Date: Tue, 16 Jan 2024 12:36:54 -0600 Subject: [PATCH] Stop using coveralls The coveralls gem is no longer supported and causes TLS errors which break the build --- README.md | 2 -- spec/spec_helper.rb | 6 ------ 2 files changed, 8 deletions(-) diff --git a/README.md b/README.md index 74dd6aa..265b87b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # Riiif [![Gem Version](https://badge.fury.io/rb/riiif.png)](http://badge.fury.io/rb/riiif) -[![Coverage Status](https://coveralls.io/repos/github/curationexperts/riiif/badge.svg?branch=master)](https://coveralls.io/github/curationexperts/riiif?branch=master) - A Ruby IIIF image server as a rails engine. diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 364ced8..6e056c4 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,11 +1,5 @@ -require 'coveralls' require 'simplecov' -SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([ - SimpleCov::Formatter::HTMLFormatter, - Coveralls::SimpleCov::Formatter - ]) - SimpleCov.start('rails') require 'engine_cart'