Skip to content

Commit

Permalink
Merge pull request #302 from aspettl/ruby-3.3.5
Browse files Browse the repository at this point in the history
Ruby 3.3.5
  • Loading branch information
aspettl authored Sep 5, 2024
2 parents d103f2f + 6f4ac87 commit 5b5a473
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.3.4
ruby-3.3.5
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.4-slim-bookworm AS builder
FROM ruby:3.3.5-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.4-slim-bookworm
FROM ruby:3.3.5-slim-bookworm
LABEL maintainer="[email protected]"

RUN apt-get update && apt-get install -y libmariadb3 && rm -rf /var/lib/apt/lists/*
Expand Down
4 changes: 3 additions & 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.4'
ruby '3.3.5'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem 'rails', '~> 7.2.1'
Expand All @@ -21,6 +21,8 @@ gem 'importmap-rails'
# gem 'webpacker', '~> 5.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.12'
# Required by jbuilder in combination with Ruby 3.5.0 because ostruct is removed from the standard library
gem 'ostruct', '>= 0.6.0'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
Expand Down
6 changes: 4 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ GEM
nokogiri (1.16.7-x86_64-linux)
racc (~> 1.4)
orm_adapter (0.5.0)
ostruct (0.6.0)
parallel (1.26.3)
parser (3.3.4.2)
ast (~> 2.4.1)
Expand Down Expand Up @@ -310,6 +311,7 @@ DEPENDENCIES
memoist
mysql2 (~> 0.5)
nilify_blanks
ostruct (>= 0.6.0)
puma (~> 6.4)
pwned
rails (~> 7.2.1)
Expand All @@ -325,7 +327,7 @@ DEPENDENCIES
web-console (>= 4.1.0)

RUBY VERSION
ruby 3.3.4p94
ruby 3.3.5p100

BUNDLED WITH
2.5.11
2.5.16

0 comments on commit 5b5a473

Please sign in to comment.