Skip to content

Commit

Permalink
Merge pull request #791 from riseshia/use-latest-version
Browse files Browse the repository at this point in the history
Use Ruby 3.2.3 and Rails 7.1.3 on guide
  • Loading branch information
urimaro authored Feb 17, 2024
2 parents 7ba8921 + b708c2e commit 181866c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions _pages/install/macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ source ~/.zshrc

## rbenv を用いて Ruby をインストールする

rbenv がインストールされたので、Ruby をインストールしましょう!バージョン 3.2.1 をインストールしますが、イベントでは他のバージョンをインストールするようにお願いされるかもしれません。その場合、コマンドに含まれるバージョン番号を単純に入れ替えてください。
rbenv がインストールされたので、Ruby をインストールしましょう!バージョン 3.2.3 をインストールしますが、イベントでは他のバージョンをインストールするようにお願いされるかもしれません。その場合、コマンドに含まれるバージョン番号を単純に入れ替えてください。

{% highlight sh %}
rbenv install 3.2.1
rbenv install 3.2.3
{% endhighlight %}

rbenv でインストールできる Ruby のバージョンは、以下のコマンドで確認できます。
Expand All @@ -86,7 +86,7 @@ rbenv install -l
rbenv によってたくさんのバージョンの Ruby を管理できるようになりますが、どのバージョンを使おうとしているのか曖昧になってしまうことがあります。これを避けるために、今インストールしたバージョンが実際に使いたいものであることを rbenv に教えてあげましょう。

{% highlight sh %}
rbenv global 3.2.1
rbenv global 3.2.3
{% endhighlight %}

Ruby のバージョンがインストールしたものと一致するか確認しましょう。
Expand All @@ -95,7 +95,7 @@ Ruby のバージョンがインストールしたものと一致するか確認
ruby --version
{% endhighlight %}

`3.2.1` という数字が含まれた結果になるはずです。
`3.2.3` という数字が含まれた結果になるはずです。

`2.6` から始まるバージョンが表示されたら、まずはターミナルを再起動してみましょう。それでもまだ `2.6` から始まるバージョンが表示される場合、rbenv のセットアップで何かがうまくいかなかったために、あなたのターミナルは、Mac が出荷されたときからインストールされている古い Ruby を使っています。

Expand All @@ -113,7 +113,7 @@ Ruby をインストールしたときと同じように、Rails のインスト
rails --version
{% endhighlight %}

`Rails 7.0.4.2` と表示されるはずですが、それ以上のバージョンでも良いです。
`Rails 7.1.3` と表示されるはずですが、それ以上のバージョンでも良いです。

### Rails の動作を確認する

Expand Down
4 changes: 2 additions & 2 deletions _pages/install/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ If you run into any problems during this guide, check the [Possible errors] sect
We'll start by installing Ruby, the primary programming language used during the workshop. This can be done using the RubyInstaller described below.

- Download the [RubyInstaller](https://rubyinstaller.org/downloads/) for Windows.
- [Direct link to Ruby 3.2.1 installer with Devkit](https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.2.1-1/rubyinstaller-devkit-3.2.1-1-x64.exe) for 64-bit architecture.
- [Direct link to Ruby 3.2.3 installer with Devkit](https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.2.3-1/rubyinstaller-devkit-3.2.3-1-x64.exe) for 64-bit architecture.
- Run the installer. Click through the installer using all the default options.
- Make sure the "Run 'ridk install'" checkmark is checked partway through the installer before continuing.
- When prompted with the "MSYS2" installer, enter `1` and press Enter.
Expand Down Expand Up @@ -99,7 +99,7 @@ Let's check whether Rails was installed successfully. Open the Windows Command P
rails --version
{% endhighlight %}

This should output `Rails 7.0.4.2`, but a higher version is also good.
This should output `Rails 7.1.3`, but a higher version is also good.

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

Expand Down
6 changes: 3 additions & 3 deletions _posts-jp/install/windows-wsl.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-b
Bashウィンドウで以下のコマンドを実行してください。

{% highlight sh %}
rbenv install 3.2.1
rbenv global 3.2.1
rbenv install 3.2.3
rbenv global 3.2.3
{% endhighlight %}

作業完了後に、以下のコマンドを実行してください。
Expand All @@ -123,7 +123,7 @@ ruby -v
以下のように、インストールされたRubyのバージョンが表示されればOKです。

{% highlight sh %}
ruby 3.2.1 (2023-02-08 revision 31819e82c8) [x86_64-linux]
ruby 3.2.3 (2024-01-18 revision 52bb2ac0a6) [x86_64-linux]
{% endhighlight %}

### *3.* Railsのインストール
Expand Down

0 comments on commit 181866c

Please sign in to comment.