Skip to content

Commit 4d1394b

Browse files
committed
debug
1 parent 205488a commit 4d1394b

File tree

3 files changed

+8
-54
lines changed

3 files changed

+8
-54
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -36,59 +36,10 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
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'
5739
- ruby: 2.7
5840
env:
5941
RAILS_VERSION: '~> 7.1.0'
6042

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-
9243
env: ${{ matrix.env }}
9344
steps:
9445
- uses: actions/checkout@v4

example_app_generator/spec/support/capybara.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
puts 'file is loaded'
12
# This is a backport of a fix that was included in capybara 3.40.0 which was also Ruby version locked to 3.0+
23
if RUBY_VERSION.to_f < 3 && Rails::VERSION::STRING.to_f >= 7.1
4+
puts 'file attempts register'
35
Capybara.register_server :puma do |app, port, host, **options|
6+
puts 'which is loaded'
47
begin
58
require 'rackup'
69
rescue LoadError # rubocop:disable Lint/SuppressedException

script/run_build

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ source script/functions.sh
66

77
fold "binstub check" check_binstubs
88

9-
fold "specs" run_specs_and_record_done
9+
# fold "specs" run_specs_and_record_done
1010

11-
fold "acceptance" bin/rake acceptance --trace
11+
fold "acceptance" bin/cucumber features/system_specs/system_specs.feature:86
1212

13-
fold "snippets" script/run_snippets.sh
13+
# fold "snippets" script/run_snippets.sh
1414

1515
if documentation_enforced; then
16-
fold "doc check" check_documentation_coverage
16+
# fold "doc check" check_documentation_coverage
1717
fi
1818

19-
fold "one-by-one specs" run_specs_one_by_one
19+
# fold "one-by-one specs" run_specs_one_by_one

0 commit comments

Comments
 (0)