Skip to content

Commit 582dbc3

Browse files
authored
Merge pull request #239 from prometheus/replace_coveralls
Replace Coveralls with SimpleCov
2 parents 903124c + a7657d0 commit 582dbc3

3 files changed

Lines changed: 2 additions & 9 deletions

File tree

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ source 'https://rubygems.org'
33
gemspec
44

55
group :test do
6-
gem 'coveralls'
6+
gem 'simplecov'
77
gem 'json'
88
gem 'rack'
99
gem 'rack-test'

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ through a HTTP interface. Intended to be used together with a
66

77
[![Gem Version][4]](http://badge.fury.io/rb/prometheus-client)
88
[![Build Status][3]](https://circleci.com/gh/prometheus/client_ruby/tree/master.svg?style=svg)
9-
[![Coverage Status][7]](https://coveralls.io/r/prometheus/client_ruby)
109

1110
## Usage
1211

spec/spec_helper.rb

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
# encoding: UTF-8
22

33
require 'simplecov'
4-
require 'coveralls'
54

65
RSpec.configure do |c|
76
c.warnings = true
87
end
98

10-
SimpleCov.formatter =
11-
if ENV['CI']
12-
Coveralls::SimpleCov::Formatter
13-
else
14-
SimpleCov::Formatter::HTMLFormatter
15-
end
9+
SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter
1610

1711
SimpleCov.start

0 commit comments

Comments
 (0)