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

Build: add support for Ruby #11075

Merged
merged 1 commit into from
Feb 1, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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``
Comment on lines +335 to +336
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's reasonable to only start with a single version. Should we have a small note saying you can ask support for additional versions? 🤷

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that people will naturally ask for more versions (and tools) as they have been doing 😄 without the need of a note 😅

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ha, true.


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.3.1",
},
"ruby": {
"3.3": "3.3.0",
},
"rust": {
"1.55": "1.55.0",
"1.61": "1.61.0",
Expand Down
Loading