Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Commit

Permalink
Switch from Coveralls to Codecov.
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed May 8, 2015
1 parent 817d81b commit 6e76a92
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![MIT License](https://img.shields.io/github/license/makenew/ruby-gem.svg)](./LICENSE.txt)
[![Dependency Status](https://img.shields.io/gemnasium/makenew/ruby-gem.svg)](https://gemnasium.com/makenew/ruby-gem)
[![Build Status](https://img.shields.io/travis/makenew/ruby-gem.svg)](https://travis-ci.org/makenew/ruby-gem)
[![Coverage Status](https://img.shields.io/coveralls/makenew/ruby-gem.svg)](https://coveralls.io/r/makenew/ruby-gem)
[![Coverage Status](https://img.shields.io/codecov/c/github/makenew/ruby-gem.svg)](https://codecov.io/github/makenew/ruby-gem)
[![Code Climate](https://img.shields.io/codeclimate/github/makenew/ruby-gem.svg)](https://codeclimate.com/github/makenew/ruby-gem)

Use this project freely as a base for your testable Ruby gems.
Expand Down
2 changes: 1 addition & 1 deletion replace_gemname.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ Gem::Specification.new do |spec|

spec.add_development_dependency 'rspec', '~> 3.1'
spec.add_development_dependency 'simplecov', '~> 0.9'
spec.add_development_dependency 'coveralls', '~> 0.7'
spec.add_development_dependency 'codecov', '~> 0.0'
spec.add_development_dependency 'fuubar', '~> 2.0'
end
8 changes: 4 additions & 4 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
require 'coveralls'
require 'simplecov'
require 'codecov'

SimpleCov.start

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
SimpleCov::Formatter::HTMLFormatter,
Coveralls::SimpleCov::Formatter
SimpleCov::Formatter::Codecov
]

SimpleCov.start

require 'replace_gemname'

RSpec.configure do |c|
Expand Down

0 comments on commit 6e76a92

Please sign in to comment.