diff options
author | Nobuyoshi Nakada <[email protected]> | 2023-06-26 18:24:39 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2023-06-26 18:25:21 +0900 |
commit | dc940cc74050ec783882ad5914d8315011d89b8e (patch) | |
tree | 33b2290f17971edf3936df1911ffa8b7e70654dc /doc/contributing/building_ruby.md | |
parent | d1b6ff42fa0c7345713ec5e40c9cd782dac88948 (diff) |
[DOC] Nested ordered lists need more indents
Diffstat (limited to 'doc/contributing/building_ruby.md')
-rw-r--r-- | doc/contributing/building_ruby.md | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/doc/contributing/building_ruby.md b/doc/contributing/building_ruby.md index 1f135eb782..d73d2d6c94 100644 --- a/doc/contributing/building_ruby.md +++ b/doc/contributing/building_ruby.md @@ -42,29 +42,31 @@ 1. Download ruby source code: + Select one of the bellow. + 1. Build from the tarball: - Download the latest tarball from [ruby-lang.org](https://www.ruby-lang.org/en/downloads/) and - extract it. Example for Ruby 3.0.2: + Download the latest tarball from [ruby-lang.org](https://www.ruby-lang.org/en/downloads/) and + extract it. Example for Ruby 3.0.2: - ``` shell - tar -xzf ruby-3.0.2.tar.gz - cd ruby-3.0.2 - ``` + ``` shell + tar -xzf ruby-3.0.2.tar.gz + cd ruby-3.0.2 + ``` 2. Build from the git repository: - Checkout the CRuby source code: + Checkout the CRuby source code: - ``` shell - git clone https://github.com/ruby/ruby.git - ``` + ``` shell + git clone https://github.com/ruby/ruby.git + ``` - Generate the configure file: + Generate the configure file: - ``` shell - ./autogen.sh - ``` + ``` shell + ./autogen.sh + ``` 2. Create a `build` directory separate from the source directory: |