File tree Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 19
19
byebug (11.0.1 )
20
20
codeclimate-engine-rb (0.4.1 )
21
21
virtus (~> 1.0 )
22
+ codecov (0.1.16 )
23
+ json
24
+ simplecov
25
+ url
22
26
coercible (1.0.0 )
23
27
descendants_tracker (~> 0.0.1 )
24
28
descendants_tracker (0.0.4 )
37
41
sexp_processor (~> 4.8 )
38
42
ice_nine (0.11.2 )
39
43
jaro_winkler (1.5.4 )
44
+ json (2.3.0 )
40
45
kwalify (0.7.2 )
41
46
launchy (2.4.3 )
42
47
addressable (~> 2.3 )
92
97
thread_safe (0.3.6 )
93
98
tty-which (0.4.2 )
94
99
unicode-display_width (1.6.0 )
100
+ url (0.3.2 )
95
101
virtus (1.0.5 )
96
102
axiom-types (~> 0.1 )
97
103
coercible (~> 1.0 )
@@ -104,6 +110,7 @@ PLATFORMS
104
110
DEPENDENCIES
105
111
bundler (~> 2.0 )
106
112
byebug (~> 11 )
113
+ codecov (~> 0.1.16 )
107
114
minitest (~> 5.8.4 )
108
115
minitest-around (~> 0.5.0 )
109
116
rake (~> 10.0 )
Original file line number Diff line number Diff line change 3
3
![ skunk] ( https://github.com/fastruby/skunk/raw/master/logo.png )
4
4
5
5
6
- [ ![ Contributor Covenant] ( https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg )] ( code-of-conduct.md ) [ ![ Build Status] ( https://travis-ci.org/fastruby/skunk.svg?branch=master )] ( https://travis-ci.org/fastruby/skunk ) [ ![ Maintainability] ( https://api.codeclimate.com/v1/badges/3e33d701ced16eee2420/maintainability )] ( https://codeclimate.com/github/fastruby/skunk/maintainability ) [ ![ Docs] ( http://img.shields.io/badge/yard-docs-blue.svg )] ( http://rubydoc.info/gems/skunk )
6
+ [ ![ Contributor Covenant] ( https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg )] ( code-of-conduct.md ) [ ![ Build Status] ( https://travis-ci.org/fastruby/skunk.svg?branch=master )] ( https://travis-ci.org/fastruby/skunk ) [ ![ Maintainability] ( https://api.codeclimate.com/v1/badges/3e33d701ced16eee2420/maintainability )] ( https://codeclimate.com/github/fastruby/skunk/maintainability ) [ ![ Docs] ( http://img.shields.io/badge/yard-docs-blue.svg )] ( http://rubydoc.info/gems/skunk ) [ ![ codecov ] ( https://codecov.io/gh/fastruby/skunk/branch/master/graph/badge.svg )] ( https://codecov.io/gh/fastruby/skunk )
7
7
8
8
A RubyCritic extension to calculate StinkScore for a file or project.
9
9
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ Gem::Specification.new do |spec|
41
41
42
42
spec . add_development_dependency "bundler" , "~> 2.0"
43
43
spec . add_development_dependency "byebug" , "~> 11"
44
+ spec . add_development_dependency "codecov" , "~> 0.1.16"
44
45
spec . add_development_dependency "minitest" , "~> 5.8.4"
45
46
spec . add_development_dependency "minitest-around" , "~> 0.5.0"
46
47
spec . add_development_dependency "rake" , "~> 10.0"
Original file line number Diff line number Diff line change 3
3
if ENV [ "COVERAGE" ] == "true"
4
4
require "simplecov"
5
5
require "simplecov-console"
6
+ require "codecov"
6
7
7
8
SimpleCov . formatter = SimpleCov ::Formatter ::MultiFormatter [
8
9
SimpleCov ::Formatter ::HTMLFormatter ,
9
10
SimpleCov ::Formatter ::Console ,
11
+ SimpleCov ::Formatter ::Codecov ,
10
12
]
11
13
12
14
SimpleCov . start do
You can’t perform that action at this time.
0 commit comments