From 9e8426fe3774f92900f13e3c3bb107d1ea7dedf0 Mon Sep 17 00:00:00 2001 From: Ryan McGeary Date: Mon, 18 Mar 2024 09:27:11 -0600 Subject: [PATCH] Remove coveralls Coveralls gems started raising SSL errors whilen connecting to coveralls.io --- README.md | 1 - spec/spec_helper.rb | 3 --- stripe_event.gemspec | 1 - 3 files changed, 5 deletions(-) diff --git a/README.md b/README.md index 497a025..42f773f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ [![Build Status](https://github.com/integrallis/stripe_event/workflows/CI/badge.svg)](https://github.com/integrallis/stripe_event/actions?query=workflow%3ACI) [![Gem Version](https://badge.fury.io/rb/stripe_event.svg)](http://badge.fury.io/rb/stripe_event) [![Code Climate](https://codeclimate.com/github/integrallis/stripe_event.svg)](https://codeclimate.com/github/integrallis/stripe_event) -[![Coverage Status](https://coveralls.io/repos/integrallis/stripe_event/badge.svg)](https://coveralls.io/r/integrallis/stripe_event) [![Gem Downloads](https://img.shields.io/gem/dt/stripe_event.svg)](https://rubygems.org/gems/stripe_event) StripeEvent is built on the [ActiveSupport::Notifications API](http://api.rubyonrails.org/classes/ActiveSupport/Notifications.html). Incoming webhook requests are [authenticated with the webhook signature](#authenticating-webhooks-with-signatures). Define subscribers to handle specific event types. Subscribers can be a block or an object that responds to `#call`. diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 30ea4ee..dc2350c 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,6 +1,3 @@ -require 'coveralls' -Coveralls.wear! - require 'webmock/rspec' require File.expand_path('../../lib/stripe_event', __FILE__) Dir[File.expand_path('../spec/support/**/*.rb', __FILE__)].each { |f| require f } diff --git a/stripe_event.gemspec b/stripe_event.gemspec index c353acc..3fc5bdf 100644 --- a/stripe_event.gemspec +++ b/stripe_event.gemspec @@ -21,7 +21,6 @@ Gem::Specification.new do |s| s.add_dependency "stripe", [">= 2.8", "< 11"] s.add_development_dependency "appraisal" - s.add_development_dependency "coveralls" s.add_development_dependency "rails", [">= 3.1"] s.add_development_dependency "rake" s.add_development_dependency "rspec-rails", "~> 3.7"