From b81252e34f65831dfca25d03e01477cbbf3ae8ce Mon Sep 17 00:00:00 2001 From: adfoster-r7 Date: Fri, 13 Oct 2023 01:23:38 +0100 Subject: [PATCH] Add support for ruby 3.3.0-preview2 --- .github/workflows/verify.yml | 2 +- msfconsole | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 6a14ecccb98..606c679e497 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -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 diff --git a/msfconsole b/msfconsole index 43482bd9cc9..96630b48cb4 100755 --- a/msfconsole +++ b/msfconsole @@ -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