Skip to content

Commit

Permalink
Merge pull request #369 from betadots/ruby-3.3.1
Browse files Browse the repository at this point in the history
Update to Ruby 3.3.1
  • Loading branch information
rwaffen authored Apr 25, 2024
2 parents 7c2ec12 + b114af6 commit 062beb9
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.3.0
ruby-3.3.1
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 3.3.0
ruby 3.3.1
6 changes: 3 additions & 3 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
In case you are using an Apple M1 Chip you might run into trouble building
Ruby. A work around for that is using the command

rvm reinstall 3.3.0 --with-openssl-dir=$(brew --prefix openssl) --with-readline-dir=$(brew --prefix readline) --with-libyaml-dir=$(brew --prefix libyaml) --disable-dtrace --disable-docs
rvm reinstall 3.3.1 --with-openssl-dir=$(brew --prefix openssl) --with-readline-dir=$(brew --prefix readline) --with-libyaml-dir=$(brew --prefix libyaml) --disable-dtrace --disable-docs

On intel you can proceed with the following:

rvm install 3.3.0
rvm use 3.3.0
rvm install 3.3.1
rvm use 3.3.1

## **Main part**

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.0-slim-bookworm
FROM ruby:3.3.1-slim-bookworm

RUN apt update && apt install -y \
g++ \
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.3.0'
ruby '3.3.1'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
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 @@ -515,7 +515,7 @@ DEPENDENCIES
web-console (>= 3.3.0)

RUBY VERSION
ruby 3.3.0p0
ruby 3.3.1p55

BUNDLED WITH
2.5.3
4 changes: 2 additions & 2 deletions MANUAL_INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ On Alma 8 you must install libyaml-devel:

Now you can install the required ruby version:

rvm install 3.3.0
rvm use 3.3.0
rvm install 3.3.1
rvm use 3.3.1

### **Main part**

Expand Down

0 comments on commit 062beb9

Please sign in to comment.