Skip to content

Commit

Permalink
Merge pull request #336 from aspettl/ruby-3.4.1
Browse files Browse the repository at this point in the history
Upgrade to Ruby 3.4.1
  • Loading branch information
aspettl authored Dec 27, 2024
2 parents eb59916 + c274648 commit 0e2fdd4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.3.6
ruby-3.4.1
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.6-slim-bookworm AS builder
FROM ruby:3.4.1-slim-bookworm AS builder

RUN apt-get update && apt-get install -y build-essential libmariadb-dev && rm -rf /var/lib/apt/lists/*

Expand All @@ -18,7 +18,7 @@ COPY . .
RUN RAILS_ENV=production SECRET_KEY_BASE=irrelevant bundle exec rails assets:precompile


FROM ruby:3.3.6-slim-bookworm
FROM ruby:3.4.1-slim-bookworm
LABEL maintainer="[email protected]"

RUN apt-get update && apt-get install -y libmariadb3 && rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.3.6'
ruby '3.4.1'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem 'rails', '~> 8.0.1'
Expand Down
13 changes: 6 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ GEM
warden (~> 1.2.3)
drb (2.2.1)
erubi (1.13.1)
ffi (1.17.0-aarch64-linux-gnu)
ffi (1.17.0-x86_64-linux-gnu)
ffi (1.17.0)
globalid (1.2.1)
activesupport (>= 6.1)
i18n (1.14.6)
Expand Down Expand Up @@ -139,6 +138,7 @@ GEM
matrix (0.4.2)
memoist (0.16.2)
mini_mime (1.1.5)
mini_portile2 (2.8.8)
minitest (5.25.4)
msgpack (1.7.2)
mysql2 (0.5.6)
Expand All @@ -155,9 +155,8 @@ GEM
activerecord (>= 4.0.0)
activesupport (>= 4.0.0)
nio4r (2.7.4)
nokogiri (1.17.2-aarch64-linux)
racc (~> 1.4)
nokogiri (1.17.2-x86_64-linux)
nokogiri (1.17.2)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
orm_adapter (0.5.0)
ostruct (0.6.1)
Expand Down Expand Up @@ -327,7 +326,7 @@ DEPENDENCIES
web-console (>= 4.1.0)

RUBY VERSION
ruby 3.3.6p108
ruby 3.4.1p0

BUNDLED WITH
2.5.22
2.6.2

0 comments on commit 0e2fdd4

Please sign in to comment.