File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 1
- # Rails 5.x, 6.0 requires Ruby < 3
1
+ # Rails 5.x, 6.0 require Ruby < 3
2
2
if RUBY_ENGINE == 'ruby' && RUBY_VERSION <= '3.0'
3
3
appraise 'rails-5.2' do
4
4
gem 'activerecord-jdbcsqlite3-adapter' , '~> 52.5' , platform : :jruby
@@ -17,7 +17,7 @@ if RUBY_ENGINE == 'ruby' && RUBY_VERSION <= '3.0'
17
17
end
18
18
end
19
19
20
- # Test rails 6.1 with psych >= 4
20
+ # Rails 6.1 with psych >= 4
21
21
appraise 'rails-6.1' do
22
22
gem 'activerecord-jdbcsqlite3-adapter' , '~> 61.1' , platform : :jruby
23
23
gem 'bootsnap' , '>= 1.4.4'
@@ -27,10 +27,8 @@ appraise 'rails-6.1' do
27
27
gem 'psych' , '>= 4'
28
28
end
29
29
30
- # Temporarily exclude Truffleruby and JRuby from testing in Rails 7.x until they fix the issues upstream.
31
- # See https://github.com/rubyconfig/config/pull/344#issuecomment-1766209753
32
- # if (RUBY_ENGINE == 'ruby' && RUBY_VERSION >= '2.7') || RUBY_ENGINE != 'ruby'
33
- if RUBY_ENGINE == 'ruby' && RUBY_VERSION >= '2.7'
30
+ # Rails 7.x require Ruby >= 2.7
31
+ if ( RUBY_ENGINE == 'ruby' && RUBY_VERSION >= '2.7' ) || RUBY_ENGINE != 'ruby'
34
32
appraise 'rails-7.0' do
35
33
gem 'activerecord-jdbcsqlite3-adapter' , '~> 70.1' , platform : :jruby
36
34
gem 'sqlite3' , '~> 1.6.4' , platform : :ruby
You can’t perform that action at this time.
0 commit comments