Skip to content

Commit

Permalink
Upgrade ruby. to 3.2.4 (#1821)
Browse files Browse the repository at this point in the history
upgrade ruby
  • Loading branch information
apoorv1316 authored Apr 25, 2024
1 parent 7fa42e5 commit 6e4ea2d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#syntax=docker/dockerfile:1
ARG VARIANT=3.2
ARG VARIANT=3.2.4
FROM mcr.microsoft.com/vscode/devcontainers/ruby:${VARIANT} AS base

# Update args in docker-compose.yaml to set the UID/GID of the "vscode" user.
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.2.4
2 changes: 1 addition & 1 deletion Dockerfile.local
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#syntax=docker/dockerfile:1
FROM ruby:3.2.2-slim AS base
FROM ruby:3.2.4-slim AS base

ARG NODE_VERSION=18.14.2

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#syntax=docker/dockerfile:1
FROM ruby:3.2.2-slim AS base
FROM ruby:3.2.4-slim AS base

ARG NODE_VERSION=18.14.2

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.2.2"
ruby "3.2.4"

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.1.3"
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ DEPENDENCIES
webmock (~> 3.14.0)

RUBY VERSION
ruby 3.2.2p53
ruby 3.2.4p170

BUNDLED WITH
2.4.10
2 changes: 1 addition & 1 deletion deployment/fly/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:experimental
ARG RUBY_VERSION=3.2.2
ARG RUBY_VERSION=3.2.4
ARG VARIANT=jemalloc-slim
FROM quay.io/evl.ms/fullstaq-ruby:${RUBY_VERSION}-${VARIANT} as base

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/contributing-guide/setup/macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ git clone https://github.com/<your-name>/miru-web.git
your project as you `cd` into the directory follow
[this](https://github.com/nvm-sh/nvm#deeper-shell-integration))

#### 4. Install ruby 3.2.2
#### 4. Install ruby 3.2.4

```bash
$ rvm install $(cat .ruby-version)
Expand Down

0 comments on commit 6e4ea2d

Please sign in to comment.