Skip to content

Commit

Permalink
Build: add support for Ruby (#11075)
Browse files Browse the repository at this point in the history
  • Loading branch information
humitos committed Feb 1, 2024
1 parent 505ee4c commit 803646c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/user/config-file/v2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ build.tools
Version specifiers for each tool. It must contain at least one tool.

:Type: ``dict``
:Options: ``python``, ``nodejs``, ``rust``, ``golang``
:Options: ``python``, ``nodejs``, ``ruby``, ``rust``, ``golang``
:Required: ``true``

build.tools.python
Expand Down Expand Up @@ -326,6 +326,15 @@ Node.js version to use.
- ``19``
- ``20``

build.tools.ruby
````````````````

Ruby version to use.

:Type: ``string``
:Options:
- ``3.3``

build.tools.rust
````````````````

Expand Down
3 changes: 3 additions & 0 deletions readthedocs/builds/constants_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
"19": "19.0.1",
"20": "20.11.0", # LTS
},
"ruby": {
"3.3": "3.3.0",
},
"rust": {
"1.55": "1.55.0",
"1.61": "1.61.0",
Expand Down

0 comments on commit 803646c

Please sign in to comment.