Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update manual install docs for Ruby 3.2.2 #3282

Merged
merged 2 commits into from Jul 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/manual/installation.md
Expand Up @@ -72,8 +72,8 @@ Remove the old Ruby versions if present:
Download Ruby and compile it:

mkdir /tmp/ruby && cd /tmp/ruby
curl -L --progress-bar https://cache.ruby-lang.org/pub/ruby/2.7/ruby-2.7.7.tar.bz2 | tar xj
cd ruby-2.7.7
curl -L --progress-bar https://cache.ruby-lang.org/pub/ruby/3.2/ruby-3.2.2.tar.bz2 | tar xj
cd ruby-3.2.2
./configure --disable-install-rdoc
make -j`nproc`
sudo make install
Expand Down
6 changes: 3 additions & 3 deletions doc/manual/update.md
Expand Up @@ -52,7 +52,7 @@ sudo -u huginn -H cp Procfile.bak Procfile

### 4. Update ruby version

Ensure you have Ruby 2.7 installed:
Ensure you have Ruby 3.2 installed:

```
ruby -v
Expand All @@ -62,8 +62,8 @@ Upgrade when required:

```
mkdir /tmp/ruby && cd /tmp/ruby
curl -L --progress https://cache.ruby-lang.org/pub/ruby/2.7/ruby-2.7.7.tar.bz2 | tar xj
cd ruby-2.7.7
curl -L --progress https://cache.ruby-lang.org/pub/ruby/3.2/ruby-3.2.2.tar.bz2 | tar xj
cd ruby-3.2.2
./configure --disable-install-rdoc
make -j`nproc`
sudo make install
Expand Down