File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -16,4 +16,5 @@ group :test do
16
16
gem "debug"
17
17
gem "rspec" , "~> 3.0"
18
18
gem "simplecov" , require : false
19
+ gem "simplecov-json" , require : false
19
20
end
Original file line number Diff line number Diff line change 76
76
irb (1.10.1 )
77
77
rdoc
78
78
reline (>= 0.3.8 )
79
+ json (2.7.1 )
79
80
minitest (5.20.0 )
80
81
mutex_m (0.2.0 )
81
82
psych (5.1.1.1 )
104
105
simplecov-html (~> 0.11 )
105
106
simplecov_json_formatter (~> 0.1 )
106
107
simplecov-html (0.12.3 )
108
+ simplecov-json (0.2.3 )
109
+ json
110
+ simplecov
107
111
simplecov_json_formatter (0.1.3 )
108
112
stringio (3.1.0 )
109
113
thor (1.2.2 )
@@ -122,6 +126,7 @@ DEPENDENCIES
122
126
rake (~> 13.0 )
123
127
rspec (~> 3.0 )
124
128
simplecov
129
+ simplecov-json
125
130
126
131
BUNDLED WITH
127
132
2.4.22
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
- require "simplecov"
3
+ require 'simplecov'
4
+ require 'simplecov-json'
5
+
6
+ SimpleCov . formatters = SimpleCov ::Formatter ::MultiFormatter . new ( [
7
+ SimpleCov ::Formatter ::HTMLFormatter ,
8
+ SimpleCov ::Formatter ::JSONFormatter
9
+ ] )
4
10
5
11
SimpleCov . start do
6
12
add_filter "/spec/"
You can’t perform that action at this time.
0 commit comments