Skip to content

Commit fc6373b

Browse files
compwronFireLemons
authored andcommitted
upgrade from ruby 3.3.6 3.3.8
1 parent 3ed4ba2 commit fc6373b

7 files changed

Lines changed: 9 additions & 10 deletions

File tree

.devcontainer/post-create.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ RUBY_VERSION="$(cat .ruby-version | tr -d '\n')"
33
# copy the file only if it doesn't already exist
44
cp -n .devcontainer/.env.codespaces .env
55

6-
# If the project's required ruby version changes from 3.3.6, this command
6+
# If the project's required ruby version changes from 3.3.8, this command
77
# will download and compile the correct version, but it will take a long time.
8-
if [ "$RUBY_VERSION" != "3.3.6" ]; then
8+
if [ "$RUBY_VERSION" != "3.3.8" ]; then
99
rvm install $RUBY_VERSION
1010
rvm use $RUBY_VERSION
1111
echo "Ruby $RUBY_VERSION installed"

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.6
1+
3.3.8

.tool-versions

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
ruby 3.3.6
2-
npm 11.0.0
1+
ruby 3.3.8
32
nodejs 22.11.0

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3.6-alpine AS builder
1+
FROM ruby:3.3.8-alpine AS builder
22

33
RUN apk update && apk upgrade && apk add --update --no-cache \
44
build-base \
@@ -14,7 +14,7 @@ RUN bundle install
1414

1515
### BUILD STEP DONE ###
1616

17-
FROM ruby:3.3.6-alpine
17+
FROM ruby:3.3.8-alpine
1818

1919
ARG RAILS_ROOT=/usr/src/app/
2020

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
ruby "3.3.6"
5+
ruby "3.3.8"
66
gem "rails", "~> 7.2"
77

88
gem "after_party" # post-deployment tasks

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ DEPENDENCIES
735735
wicked
736736

737737
RUBY VERSION
738-
ruby 3.3.6p108
738+
ruby 3.3.8p144
739739

740740
BUNDLED WITH
741741
2.6.6

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
gemConfig = { };
4141
# See available versions here: https://github.com/bobvanderlinden/nixpkgs-ruby/blob/master/ruby/versions.json
42-
ruby = pkgs."ruby-3.3.6";
42+
ruby = pkgs."ruby-3.3.8";
4343

4444
bundixcli = bundix.packages.${system}.default;
4545
in rec {

0 commit comments

Comments
 (0)