File tree Expand file tree Collapse file tree 3 files changed +8
-54
lines changed
example_app_generator/spec/support Expand file tree Collapse file tree 3 files changed +8
-54
lines changed Original file line number Diff line number Diff line change @@ -36,59 +36,10 @@ jobs:
36
36
fail-fast : false
37
37
matrix :
38
38
include :
39
- # Edge Rails (?) builds >= 2.7
40
- - ruby : 3.2
41
- env :
42
- RAILS_VERSION : ' main'
43
- - ruby : 3.1
44
- env :
45
- RAILS_VERSION : ' main'
46
-
47
- # Rails 7.1 builds >= 2.7
48
- - ruby : 3.2
49
- env :
50
- RAILS_VERSION : ' ~> 7.1.0'
51
- - ruby : 3.1
52
- env :
53
- RAILS_VERSION : ' ~> 7.1.0'
54
- - ruby : ' 3.0'
55
- env :
56
- RAILS_VERSION : ' ~> 7.1.0'
57
39
- ruby : 2.7
58
40
env :
59
41
RAILS_VERSION : ' ~> 7.1.0'
60
42
61
- # Rails 7.0 builds >= 2.7
62
- - ruby : 3.2
63
- env :
64
- RAILS_VERSION : ' ~> 7.0.0'
65
- - ruby : 3.1
66
- env :
67
- RAILS_VERSION : ' ~> 7.0.0'
68
- - ruby : ' 3.0'
69
- env :
70
- RAILS_VERSION : ' ~> 7.0.0'
71
- - ruby : 2.7
72
- env :
73
- RAILS_VERSION : ' ~> 7.0.0'
74
-
75
- # Rails 6.1 builds >= 2.5
76
- - ruby : 3.1
77
- env :
78
- RAILS_VERSION : ' ~> 6.1.0'
79
- - ruby : ' 3.0'
80
- env :
81
- RAILS_VERSION : ' ~> 6.1.0'
82
- - ruby : 2.7
83
- env :
84
- RAILS_VERSION : ' ~> 6.1.0'
85
- - ruby : 2.6
86
- env :
87
- RAILS_VERSION : ' ~> 6.1.0'
88
- - ruby : 2.5
89
- env :
90
- RAILS_VERSION : ' ~> 6.1.0'
91
-
92
43
env : ${{ matrix.env }}
93
44
steps :
94
45
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change
1
+ puts 'file is loaded'
1
2
# This is a backport of a fix that was included in capybara 3.40.0 which was also Ruby version locked to 3.0+
2
3
if RUBY_VERSION . to_f < 3 && Rails ::VERSION ::STRING . to_f >= 7.1
4
+ puts 'file attempts register'
3
5
Capybara . register_server :puma do |app , port , host , **options |
6
+ puts 'which is loaded'
4
7
begin
5
8
require 'rackup'
6
9
rescue LoadError # rubocop:disable Lint/SuppressedException
Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ source script/functions.sh
6
6
7
7
fold " binstub check" check_binstubs
8
8
9
- fold " specs" run_specs_and_record_done
9
+ # fold "specs" run_specs_and_record_done
10
10
11
- fold " acceptance" bin/rake acceptance --trace
11
+ fold " acceptance" bin/cucumber features/system_specs/system_specs.feature:86
12
12
13
- fold " snippets" script/run_snippets.sh
13
+ # fold "snippets" script/run_snippets.sh
14
14
15
15
if documentation_enforced; then
16
- fold " doc check" check_documentation_coverage
16
+ # fold "doc check" check_documentation_coverage
17
17
fi
18
18
19
- fold " one-by-one specs" run_specs_one_by_one
19
+ # fold "one-by-one specs" run_specs_one_by_one
You can’t perform that action at this time.
0 commit comments