Skip to content

Commit 9519de7

Browse files
committed
Remove coveralls dependency
1 parent fc0514c commit 9519de7

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
1. [Fork the repository](https://help.github.com/articles/fork-a-repo).
44
2. Create a topic branch.
5-
3. Make your changes, including tests for your changes which maintain [coverage](https://coveralls.io/r/jdennes/omniauth-createsend).
6-
4. Ensure that all tests pass, by running `bundle exec rake`. The [Travis CI build](https://travis-ci.org/jdennes/omniauth-createsend) runs on Ruby `2.1.0`, `2.0.0`, and `1.9.3`.
7-
5. It should go without saying, but do not increment the version number in your commits.
5+
3. Make your changes, including tests for your changes which maintain coverage.
6+
4. Ensure that all tests pass, by running `bundle exec rake`.
7+
5. Please don't increment the version number in your commits.
88
6. [Submit a pull request](https://help.github.com/articles/using-pull-requests).

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ Please check the [guidelines for contributing](https://github.com/jdennes/omniau
3838

3939
## This stuff should be green
4040

41-
[![Build Status](https://secure.travis-ci.org/jdennes/omniauth-createsend.png)][travis] [![Coverage Status](https://coveralls.io/repos/jdennes/omniauth-createsend/badge.png?branch=master)][coveralls] [![Dependency Status](https://gemnasium.com/jdennes/omniauth-createsend.png)][gemnasium] [![Gem Version](https://badge.fury.io/rb/omniauth-createsend.png)][gembadge]
41+
[![Build Status](https://secure.travis-ci.org/jdennes/omniauth-createsend.png)][travis] [![Dependency Status](https://gemnasium.com/jdennes/omniauth-createsend.png)][gemnasium] [![Gem Version](https://badge.fury.io/rb/omniauth-createsend.png)][gembadge]
4242

4343
[travis]: http://travis-ci.org/jdennes/omniauth-createsend
44-
[coveralls]: https://coveralls.io/r/jdennes/omniauth-createsend
4544
[gemnasium]: https://gemnasium.com/jdennes/omniauth-createsend
4645
[gembadge]: http://badge.fury.io/rb/omniauth-createsend

omniauth-createsend.gemspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,4 @@ Gem::Specification.new do |s|
2424
s.add_development_dependency "webmock", "~> 3.8"
2525
s.add_development_dependency "rake", "~> 13.0"
2626
s.add_development_dependency "simplecov", "~> 0"
27-
s.add_development_dependency "coveralls", "~> 0"
2827
end

spec/spec_helper.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
$:.unshift File.expand_path("../../lib", __FILE__)
33

44
require "simplecov"
5-
require "coveralls"
65

76
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
87
SimpleCov::Formatter::HTMLFormatter,
9-
Coveralls::SimpleCov::Formatter
108
]
119
SimpleCov.start
1210

0 commit comments

Comments
 (0)