File tree Expand file tree Collapse file tree 2 files changed +44
-16
lines changed Expand file tree Collapse file tree 2 files changed +44
-16
lines changed Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- next_rails (1.0.0 )
4
+ next_rails (1.0.2 )
5
5
actionview
6
6
colorize (>= 0.8.1 )
7
7
8
8
GEM
9
9
remote: https://rubygems.org/
10
10
specs:
11
- actionview (5.2.3 )
12
- activesupport (= 5.2.3 )
11
+ actionview (6.0.2.1 )
12
+ activesupport (= 6.0.2.1 )
13
13
builder (~> 3.1 )
14
14
erubi (~> 1.4 )
15
15
rails-dom-testing (~> 2.0 )
16
- rails-html-sanitizer (~> 1.0 , >= 1.0.3 )
17
- activesupport (5.2.3 )
16
+ rails-html-sanitizer (~> 1.1 , >= 1.2.0 )
17
+ activesupport (6.0.2.1 )
18
18
concurrent-ruby (~> 1.0 , >= 1.0.2 )
19
19
i18n (>= 0.7 , < 2 )
20
20
minitest (~> 5.1 )
21
21
tzinfo (~> 1.1 )
22
- builder (3.2.3 )
22
+ zeitwerk (~> 2.2 )
23
+ builder (3.2.4 )
23
24
colorize (0.8.1 )
24
25
concurrent-ruby (1.1.5 )
25
- crass (1.0.4 )
26
+ crass (1.0.6 )
26
27
diff-lcs (1.3 )
27
- erubi (1.8.0 )
28
- i18n (1.6.0 )
28
+ docile (1.3.2 )
29
+ erubi (1.9.0 )
30
+ i18n (1.8.2 )
29
31
concurrent-ruby (~> 1.0 )
30
- loofah (2.2.3 )
32
+ json (2.3.0 )
33
+ loofah (2.4.0 )
31
34
crass (~> 1.0.2 )
32
35
nokogiri (>= 1.5.9 )
33
36
mini_portile2 (2.4.0 )
34
- minitest (5.11.3 )
35
- nokogiri (1.10.3 )
37
+ minitest (5.14.0 )
38
+ nokogiri (1.10.7 )
36
39
mini_portile2 (~> 2.4.0 )
37
40
rails-dom-testing (2.0.3 )
38
41
activesupport (>= 4.2.0 )
39
42
nokogiri (>= 1.6 )
40
- rails-html-sanitizer (1.0.4 )
41
- loofah (~> 2.2 , >= 2.2.2 )
43
+ rails-html-sanitizer (1.3.0 )
44
+ loofah (~> 2.3 )
42
45
rake (10.5.0 )
43
46
rspec (3.8.0 )
44
47
rspec-core (~> 3.8.0 )
53
56
diff-lcs (>= 1.2.0 , < 2.0 )
54
57
rspec-support (~> 3.8.0 )
55
58
rspec-support (3.8.2 )
59
+ simplecov (0.17.1 )
60
+ docile (~> 1.1 )
61
+ json (>= 1.8 , < 3 )
62
+ simplecov-html (~> 0.10.0 )
63
+ simplecov-html (0.10.2 )
56
64
thread_safe (0.3.6 )
57
65
timecop (0.9.1 )
58
- tzinfo (1.2.5 )
66
+ tzinfo (1.2.6 )
59
67
thread_safe (~> 0.1 )
68
+ zeitwerk (2.2.2 )
60
69
61
70
PLATFORMS
62
71
ruby
@@ -66,7 +75,8 @@ DEPENDENCIES
66
75
next_rails !
67
76
rake (~> 10.0 )
68
77
rspec (~> 3.0 )
78
+ simplecov (~> 0.17.1 )
69
79
timecop (~> 0.9.1 )
70
80
71
81
BUNDLED WITH
72
- 1.17.2
82
+ 1.17.3
Original file line number Diff line number Diff line change 1
1
require "bundler/setup"
2
2
require "next_rails"
3
+ if ENV [ 'COVERAGE' ] == 'true'
4
+ require 'simplecov'
5
+ SimpleCov . start do
6
+ # Disambiguates individual test runs
7
+ command_name "Job #{ ENV [ "TEST_ENV_NUMBER" ] } " if ENV [ "TEST_ENV_NUMBER" ]
8
+
9
+ if ENV [ 'CI' ]
10
+ formatter SimpleCov ::Formatter ::SimpleFormatter
11
+ else
12
+ formatter SimpleCov ::Formatter ::MultiFormatter . new ( [
13
+ SimpleCov ::Formatter ::SimpleFormatter ,
14
+ SimpleCov ::Formatter ::HTMLFormatter
15
+ ] )
16
+ end
17
+
18
+ track_files "lib/**/*.rb"
19
+ end
20
+ end
3
21
4
22
RSpec . configure do |config |
5
23
# Enable flags like --only-failures and --next-failure
You can’t perform that action at this time.
0 commit comments