aboutsummaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Update ASAN docs to reflect the current state of thingsKJ Tsanaktsidis2024-02-121-4/+10
| | | | | | | | | | | | I don't really think ASAN works well at all on any version of Ruby from before https://bugs.ruby-lang.org/issues/20001 was landed. Update the docs to clarify what works, and what does not work. Also there's no need to compile at `-O0`; this was probably just hiding some of the problems with our stack scanning that were fixed in the above issue. [Bug #20248]
* YJIT: Allow tracing a counted exit (#9890)Takashi Kokubun2024-02-081-2/+3
| | | | | * YJIT: Allow tracing a counted exit * Avoid clobbering caller-saved registers
* Added vcpkg manifest for windows build environment.Hiroshi SHIBATA2024-01-261-3/+4
| | | | | | | "builtin-baseline": "53bef8994c541b6561884a8395ea35715ece75db" is 2024.01.12 released version of vcpkg. https://github.com/microsoft/vcpkg/releases/tag/2024.01.12
* YJIT: Update yjit.md about mem size (#9687)Takashi Kokubun2024-01-241-2/+2
|
* YJIT: reduce default exec mem size to 48MiB (#9685)Maxime Chevalier-Boisvert2024-01-241-1/+1
| | | | | | | | | YJIT: reduce default exec mem size to 48MiB based Based on user feedback from @jhawthorn and others. Better for small and memory-constrained deployments. NOTE: This commit should be included in the next Ruby 3.3.x point release. @xrxr should we tag someone specific?
* List branch maintainers in maintainers.mdJean Boussier2024-01-231-1/+8
| | | | | I'm not aware of this information being available anywhere else.
* Document about csv at Ruby 3.4Hiroshi SHIBATA2024-01-222-7/+4
|
* Document about syslog at Ruby 3.4Hiroshi SHIBATA2024-01-222-6/+4
|
* Document about nkf at Ruby 3.4Hiroshi SHIBATA2024-01-222-6/+4
|
* Refine entry titleHiroshi SHIBATA2024-01-221-1/+1
|
* [DOC] Update command_injection.rdocNobuyoshi Nakada2024-01-221-3/+9
| | | | | - Add missing `Kernel.exec` and `Kernel.spawn`. - Elaborate arguments that can cause injections.
* Document about drb at Ruby 3.4Hiroshi SHIBATA2024-01-222-6/+4
|
* Document about rinda at Ruby 3.4Hiroshi SHIBATA2024-01-192-6/+4
|
* Document about resolv-replace at Ruby 3.4Hiroshi SHIBATA2024-01-192-6/+3
|
* Document about abbrev at Ruby 3.4Hiroshi SHIBATA2024-01-192-5/+5
|
* Document about observer at Ruby 3.4Hiroshi SHIBATA2024-01-192-6/+4
|
* Fixed inconsistent library nameHiroshi SHIBATA2024-01-191-3/+3
|
* Fixed upstream URL at bundled gemsHiroshi SHIBATA2024-01-191-2/+2
|
* [DOC] Update ruby version in Building Ruby DependenciesKazuhiro NISHIYAMA2024-01-181-1/+1
|
* Document about bigdecimal at Ruby 3.4Hiroshi SHIBATA2024-01-182-4/+4
|
* Document about base64 at Ruby 3.4Hiroshi SHIBATA2024-01-172-6/+4
|
* Document about getoptlong at Ruby 3.4Hiroshi SHIBATA2024-01-162-6/+3
|
* Extract mutex_m as bundled gemsHiroshi SHIBATA2024-01-102-6/+4
|
* [DOC] Simply use `--` / `++` instead of `:stopdoc:` / `:startdoc:`Nobuyoshi Nakada2024-01-072-8/+10
|
* [ruby/rdoc] Tweaks to Markup ReferenceBurdetteLamar2024-01-041-13/+13
| | | | https://github.com/ruby/rdoc/commit/05ac6dba66
* [DOC] Make "Appendix F. Ractor support" a numbered listNobuyoshi Nakada2024-01-031-45/+45
|
* [ruby/rdoc] [DOC] MarkupReferenceBurdette Lamar2024-01-021-48/+41
| | | | | | (https://github.com/ruby/rdoc/pull/1075) https://github.com/ruby/rdoc/commit/095b78123b
* [DOC] Links to extension.rdoc from extension.ja.rdocNobuyoshi Nakada2024-01-021-4/+6
| | | | | | | | | | Use links than plain text references. TODO: Internationalize the RDoc hardcoded link text. Currently RDoc hardcodes reference name with external name in English, as "REF at <code>FILE</code>". To this currently, square brackets with additional text is mandatory.
* [DOC] Stop using `:enddoc:` in rdoc filesNobuyoshi Nakada2024-01-022-7/+8
| | | | | | | | In rdoc files, all documents belong to the top level of each file, and `:enddoc:` turns off `#document_self` for the entire document in the current file. This disables cross-references to labels in that file. Instead use `:stopdoc:` so that parsing can re-start by `:startdoc:` after the local variables.
* [DOC] clarify situation for Ractor#send of T_DATA objects.Luke Gruber2024-01-021-2/+2
| | | | | | | | For copying, use language like "some" T_DATA objects not supported. This is because objects like Time are supported, they don't refer to other objects so it's okay. For `send(obj, move: true)`, it's currently not supported to move any T_DATA objects.
* [DOC] Fix markupNobuyoshi Nakada2024-01-011-7/+7
|
* [DOC] Fix missing `::` for dlNobuyoshi Nakada2024-01-011-3/+3
|
* [DOC] Use local linksNobuyoshi Nakada2024-01-012-7/+8
|
* Update supported Windows and Visual C++ versionsU.Nakamura2023-12-271-3/+3
|
* [DOC] Fix == and === in control_expressions.rdocPeter Zhu2023-12-261-1/+1
|
* [Bug #20087] [DOC] Uninitialized instance variable is not warned nowNobuyoshi Nakada2023-12-271-3/+1
|
* [ruby/optparse] [DOC] Add missing secitionNobuyoshi Nakada2023-12-252-0/+32
| | | | | | Fixes https://github.com/ruby/optparse/pull/51 https://github.com/ruby/optparse/commit/667ab35f59
* [ruby/optparse] [DOC] Fix tutorial linkNobuyoshi Nakada2023-12-251-1/+1
| | | | | | Fixes https://github.com/ruby/optparse/pull/51 https://github.com/ruby/optparse/commit/1c895efc39
* Copy 3.3.0 NEWS.md to doc/NEWS [ci skip]Takashi Kokubun2023-12-251-0/+529
| | | | Basically 7d264e8e7bc21800c79b81e73a38082ff88c220b but for 3.3.0.
* Partly reverted c903cddf55af1505a0779e1a131f2fe47b838260Hiroshi SHIBATA2023-12-253-4/+4
| | | | These are intentional words
* Typofix under doc directoryHiroshi SHIBATA2023-12-257-13/+13
|
* RJIT: Clean up unnecessary documentationTakashi Kokubun2023-12-212-10/+3
|
* [ruby/irb] [DOC] Change indexes.rdoc to indexes.mdBurdette Lamar2023-12-202-190/+192
| | | | | | | | | | | | (https://github.com/ruby/irb/pull/812) * Change indexes.rdoc to indexes.md * Change indexes.rdoc to indexes.md * Change indexes.rdoc to indexes.md https://github.com/ruby/irb/commit/b1cd53cbf7
* [DOC] remove reference to pre-3.0 splat operator behaviorDoug Orleans2023-12-191-12/+0
|
* [DOC] Added notes regarding `:nodoc:` in C codeNobuyoshi Nakada2023-12-181-2/+39
|
* Improve YJIT documentation for Ruby 3.3 (#9263)Takashi Kokubun2023-12-171-20/+21
|
* YJIT: Add --yjit-disable to help and reorder it (#9230)Takashi Kokubun2023-12-131-4/+6
|
* [ruby/irb] [DOC] RDoc for module IRBBurdette Lamar2023-12-121-0/+190
| | | | | | | | (https://github.com/ruby/irb/pull/738) [DOC] RDoc for module IRB https://github.com/ruby/irb/commit/f3a0626298
* [DOC] Fix wording in descriptions of Time-like objectsNobuyoshi Nakada2023-12-051-16/+17
| | | | Co-authored-by: Burdette Lamar <BurdetteLamar@Yahoo.com>
* [DOC] Mention Time-like objectsNobuyoshi Nakada2023-12-051-6/+32
|