Skip to content

Commit 803646c

Browse files
authored
Build: add support for Ruby (#11075)
Closes #10346 Requires readthedocs/readthedocs-docker-images#200
1 parent 505ee4c commit 803646c

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

docs/user/config-file/v2.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ build.tools
283283
Version specifiers for each tool. It must contain at least one tool.
284284

285285
:Type: ``dict``
286-
:Options: ``python``, ``nodejs``, ``rust``, ``golang``
286+
:Options: ``python``, ``nodejs``, ``ruby``, ``rust``, ``golang``
287287
:Required: ``true``
288288

289289
build.tools.python
@@ -326,6 +326,15 @@ Node.js version to use.
326326
- ``19``
327327
- ``20``
328328

329+
build.tools.ruby
330+
````````````````
331+
332+
Ruby version to use.
333+
334+
:Type: ``string``
335+
:Options:
336+
- ``3.3``
337+
329338
build.tools.rust
330339
````````````````
331340

readthedocs/builds/constants_docker.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@
5050
"19": "19.0.1",
5151
"20": "20.11.0", # LTS
5252
},
53+
"ruby": {
54+
"3.3": "3.3.0",
55+
},
5356
"rust": {
5457
"1.55": "1.55.0",
5558
"1.61": "1.61.0",

0 commit comments

Comments
 (0)