From 51430f9f3f52978dcfb90730daa7eef451881404 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sat, 24 Feb 2024 09:54:23 +0100 Subject: [PATCH] Bump ruby to 3.3 --- .rubocop.yml | 2 +- .ruby-version | 2 +- Gemfile | 2 +- Gemfile.lock | 4 ++-- runner.dockerfile | 2 +- server.dockerfile | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 8c1f749..1a192a2 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -13,7 +13,7 @@ AllCops: - "node_modules/**/*" - "repos/**/*" - "config/unicorn.rb" - TargetRubyVersion: 3.2 + TargetRubyVersion: 3.3 NewCops: enable Layout/FirstArrayElementIndentation: diff --git a/.ruby-version b/.ruby-version index 9e79f6c..03463f3 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -ruby-3.2.2 +ruby-3.3.0 diff --git a/Gemfile b/Gemfile index 2728a2a..a70534d 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } -ruby '~> 3.2.2' +ruby '~> 3.3.0' # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" gem 'rails', '~> 7.1.3' diff --git a/Gemfile.lock b/Gemfile.lock index 8bb94c3..edc078e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -352,7 +352,7 @@ DEPENDENCIES webdrivers RUBY VERSION - ruby 3.2.2p53 + ruby 3.3.0p0 BUNDLED WITH - 2.3.7 + 2.5.3 diff --git a/runner.dockerfile b/runner.dockerfile index 7d834b4..32cb704 100644 --- a/runner.dockerfile +++ b/runner.dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.2.2 +FROM ruby:3.3.0 RUN mkdir /app diff --git a/server.dockerfile b/server.dockerfile index bc3da3c..f7275be 100644 --- a/server.dockerfile +++ b/server.dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.2.2 +FROM ruby:3.3.0 RUN mkdir /app