Skip to content

Commit 2c2a60e

Browse files
committed
Bump Ruby to 3.4.7 and Rails to 8.0.3 in install guides
1 parent eda348d commit 2c2a60e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

_pages/install/macos.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,18 @@ source ~/.zshrc
6767

6868
## Install Ruby with rbenv
6969

70-
Now that rbenv is installed, let's install Ruby! We'll be installing version 3.4.1, but it could be that during the event you'll be asked to install a different version. In that case, just replace the version number in the command.
70+
Now that rbenv is installed, let's install Ruby! We'll be installing version 3.4.7, but it could be that during the event you'll be asked to install a different version. In that case, just replace the version number in the command.
7171

7272
{% highlight sh %}
73-
rbenv install 3.4.1
73+
rbenv install 3.4.7
7474
{% endhighlight %}
7575

7676
## Set default Ruby
7777

7878
rbenv allows us to manage a bunch of Ruby versions, but it doesn't always quite know which version you want to use. To help it with that, we'll tell it that the version we just installed is in fact the one we want to use.
7979

8080
{% highlight sh %}
81-
rbenv global 3.4.1
81+
rbenv global 3.4.7
8282
{% endhighlight %}
8383

8484
Check that your Ruby version matches what you installed.
@@ -87,7 +87,7 @@ Check that your Ruby version matches what you installed.
8787
ruby --version
8888
{% endhighlight %}
8989

90-
The result should be something that includes the number `3.4.1`.
90+
The result should be something that includes the number `3.4.7`.
9191

9292
If the version you get starts with `2.6`, first try restarting your terminal. If it still shows the wrong version something went wrong when setting up rbenv, and your Terminal is still using an older version of Ruby that ships with your Mac. Ask your coach, if present, for help, otherwise stop here and ask for help on the day of the workshop from one of the coaches.
9393

@@ -105,7 +105,7 @@ Just like we did with Ruby, let's check whether Rails also installed successfull
105105
rails --version
106106
{% endhighlight %}
107107

108-
This should output `Rails 8.0.1`, but a higher version is also good.
108+
This should output `Rails 8.0.3`, but a higher version is also good.
109109

110110
## Test if Rails works
111111

_pages/install/windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you run into any problems during this guide, check the [Possible errors] sect
2222
We'll start by installing Ruby, the primary programming language used during the workshop. This can be done using the RubyInstaller described below.
2323

2424
- Download the [RubyInstaller](https://rubyinstaller.org/downloads/) for Windows.
25-
- [Direct link to Ruby 3.1.3 installer with Devkit](https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.1.3-1/rubyinstaller-3.1.3-1-x86.exe) for 32-bit architecture.
25+
- [Direct link to Ruby 3.4.7 installer with Devkit](https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.4.7-1/rubyinstaller-3.4.7-1-x86.exe) for 32-bit architecture.
2626
- Run the installer. Click through the installer using all the default options.
2727
- Make sure the "Run 'ridk install'" checkmark is checked partway through the installer before continuing.
2828
- When prompted with the "MSYS2" installer, enter `1` and press Enter.
@@ -78,7 +78,7 @@ Let's check whether Rails was installed successfully. Open the Windows Command P
7878
rails --version
7979
{% endhighlight %}
8080

81-
This should output `Rails 7.0.4.2`, but a higher version is also good.
81+
This should output `Rails 8.0.3`, but a higher version is also good.
8282

8383
_If you run into any problems during this step, check the [Possible errors] section for possible solutions._
8484

0 commit comments

Comments
 (0)