File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ source "https://rubygems.org"
5
5
# Specify your gem's dependencies in rails-diff.gemspec
6
6
gemspec
7
7
8
+ gem "simplecov" , require : false
8
9
gem "standard" , "~> 1.0"
9
10
gem "rake" , "~> 13.0"
10
11
Original file line number Diff line number Diff line change 91
91
date (3.4.1 )
92
92
diff-lcs (1.5.1 )
93
93
diffy (3.4.3 )
94
+ docile (1.4.1 )
94
95
drb (2.2.1 )
95
96
erubi (1.13.1 )
96
97
globalid (1.2.1 )
222
223
rubocop-ast (>= 1.38.0 , < 2.0 )
223
224
ruby-progressbar (1.13.0 )
224
225
securerandom (0.4.1 )
226
+ simplecov (0.22.0 )
227
+ docile (~> 1.1 )
228
+ simplecov-html (~> 0.11 )
229
+ simplecov_json_formatter (~> 0.1 )
230
+ simplecov-html (0.13.1 )
231
+ simplecov_json_formatter (0.1.4 )
225
232
standard (1.50.0 )
226
233
language_server-protocol (~> 3.17.0.2 )
227
234
lint_roller (~> 1.0 )
@@ -258,6 +265,7 @@ DEPENDENCIES
258
265
rails-diff !
259
266
rake (~> 13.0 )
260
267
rspec (~> 3.0 )
268
+ simplecov
261
269
standard (~> 1.0 )
262
270
263
271
BUNDLED WITH
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
+ require "simplecov"
4
+ SimpleCov . start do
5
+ enable_coverage :branch
6
+ add_filter "/spec/"
7
+ end
8
+
3
9
require "rails/diff"
4
10
Dir [ "./spec/support/**/*.rb" ] . sort . each { |f | require f }
5
11
You can’t perform that action at this time.
0 commit comments