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

Installing Ruby: ruby -v #28645

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ruby/introduction/installing_ruby.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
~/.rbenv/bin/rbenv init
```

Close the terminal window and open a new one to refresh.

Check failure on line 75 in ruby/introduction/installing_ruby.md

View workflow job for this annotation

GitHub Actions / Lint lesson files

Trailing spaces

ruby/introduction/installing_ruby.md:75:57 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md009.md

Next, you need to install `ruby-build` to help compile the Ruby binaries. Run these commands in the terminal to create a directory for the ruby-build plugin and then download it to the proper directory.

Expand Down Expand Up @@ -263,6 +263,11 @@

```bash
ruby -v
```

You should get an output with a version number **similar** to this:

```bash
ruby 3.3.4pxx (20xx-xx-xx revision xxxxx) [x86_64-darwin18]
```

Expand Down
Loading