File tree 4 files changed +9
-13
lines changed
4 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Monk ID Ruby
4
4
[ ![ Gem Version] ( https://img.shields.io/gem/v/monk-id.svg?style=flat )] ( http://badge.fury.io/rb/monk-id )
5
5
[ ![ Build Status] ( https://img.shields.io/travis/MonkDev/monk-id-ruby/dev.svg?style=flat )] ( https://travis-ci.org/MonkDev/monk-id-ruby )
6
6
[ ![ Code Climate] ( https://img.shields.io/codeclimate/github/MonkDev/monk-id-ruby.svg?style=flat )] ( https://codeclimate.com/github/MonkDev/monk-id-ruby )
7
- [ ![ Coverage Status ] ( https://img.shields. io/coveralls /MonkDev/monk-id-ruby/dev.svg?style=flat )] ( https://coveralls .io/r /MonkDev/monk-id-ruby?branch=dev )
7
+ [ ![ codecov ] ( https://codecov. io/gh /MonkDev/monk-id-ruby/branch/ dev/graph/badge .svg )] ( https://codecov .io/gh /MonkDev/monk-id-ruby )
8
8
[ ![ Dependency Status] ( https://img.shields.io/gemnasium/MonkDev/monk-id-ruby.svg?style=flat )] ( https://gemnasium.com/MonkDev/monk-id-ruby )
9
9
[ ![ Inline docs] ( http://inch-ci.org/github/MonkDev/monk-id-ruby.svg?branch=dev&style=flat )] ( http://inch-ci.org/github/MonkDev/monk-id-ruby )
10
10
@@ -131,8 +131,8 @@ code coverage report to the `coverage` directory on every run of the test suite.
131
131
Continuous integration is setup through [ Travis CI] ( https://travis-ci.org/MonkDev/monk-id-ruby )
132
132
to run the tests against Ruby v2.3 and v2.4. ([ Circle CI] ( https://circleci.com/gh/MonkDev/monk-id-ruby )
133
133
is also setup to run the tests against Ruby v2.3, but is backup for now until
134
- multiple versions can easily be specified.) The SimpleCov results are sent to
135
- [ Coveralls ] ( https://coveralls .io/r /MonkDev/monk-id-ruby ) during CI for tracking
134
+ multiple versions can easily be specified.) The code coverage results are sent
135
+ to [ Codecov ] ( https://codecov .io/gh /MonkDev/monk-id-ruby ) during CI for tracking
136
136
over time. Badges for both are dispayed at the top of this README.
137
137
138
138
#### Manual
Original file line number Diff line number Diff line change 4
4
5
5
general :
6
6
artifacts :
7
- - " coverage"
7
+ - coverage
8
8
9
9
test :
10
10
override :
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
spec . required_ruby_version = '>= 1.9.3'
22
22
23
23
spec . add_development_dependency 'bundler' , '~> 1.6'
24
- spec . add_development_dependency 'coveralls ' , '~> 0.8.17 '
24
+ spec . add_development_dependency 'codecov ' , '~> 0.1.9 '
25
25
spec . add_development_dependency 'gem-release' , '~> 0.7.4'
26
26
spec . add_development_dependency 'rake' , '~> 12.0.0'
27
27
spec . add_development_dependency 'redcarpet' , '~> 3.4.0'
Original file line number Diff line number Diff line change 1
1
require 'helpers'
2
2
require 'simplecov'
3
- require 'coveralls'
4
-
5
- Coveralls . wear!
6
-
7
- SimpleCov . formatter = SimpleCov ::Formatter ::MultiFormatter [
8
- SimpleCov ::Formatter ::HTMLFormatter ,
9
- Coveralls ::SimpleCov ::Formatter
10
- ]
11
3
12
4
SimpleCov . start do
13
5
add_filter '/spec/'
14
6
end
15
7
8
+ require 'codecov'
9
+
10
+ SimpleCov . formatter = SimpleCov ::Formatter ::Codecov
11
+
16
12
require 'monk/id'
17
13
18
14
RSpec . configure do |config |
You can’t perform that action at this time.
0 commit comments