Add support for ruby 3.3.0-preview2

This commit is contained in:
adfoster-r7 2023-10-13 01:23:38 +01:00
parent 80d2fa738d
commit b81252e34f
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ jobs:
- '3.0'
- '3.1'
- '3.2'
- '3.3.0-preview1'
- '3.3.0-preview2'
os:
- ubuntu-20.04
- ubuntu-latest

View File

@ -10,7 +10,7 @@ begin
# Silences warnings as they only serve to confuse end users
if defined?(Warning) && Warning.respond_to?(:[]=)
Warning[:deprecated] = false
Warning[:deprecated] = false unless ENV['CI']
end
# @see https://github.com/rails/rails/blob/v3.2.17/railties/lib/rails/generators/rails/app/templates/script/rails#L3-L5