aboutsummaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* [DOC] Fix broken links [ci skip]Nobuyoshi Nakada2021-09-151-1/+1
| | | | | | * As the "doc/" prefix is specified by the `--page-dir` option, remove from the rdoc references. * Refer to the original .rdoc instead of the converted .html.
* Bsearch doc for Array and Range (#4838)Burdette Lamar2021-09-141-0/+120
| | | This PR creates doc/bsearch.rdoc to provide common documentation for bsearch in Array and Range.
* Use `./autogen.sh` instead of `autoconf` in docKazuhiro NISHIYAMA2021-09-112-4/+4
|
* Need `#`Koichi Sasada2021-09-101-1/+1
| | | `shareable_constant_value` is magic comment.
* memory_view.c: Rename private to private_data for C++ (#4812)Kenta Murata2021-09-061-1/+1
| | | | | | | | | | | * memory_view.c: Rename private to private_data for C++ * doc/memory_view.md: Update document * Fix doc/memory_view.md Co-authored-by: Sutou Kouhei <kou@cozmixng.org> Co-authored-by: Sutou Kouhei <kou@cozmixng.org>
* Add --autocomplete / --noautocomplete optionsaycabta2021-08-301-1/+4
|
* [DOC] prefer RUBY_DEFAULT_FREE to a magic number [ci skip]Nobuyoshi Nakada2021-08-212-3/+3
|
* [DOC] mention rb_define_alloc_func [ci skip]Nobuyoshi Nakada2021-08-212-24/+27
|
* [DOC] update extension.ja.rdoc [ci skip]Nobuyoshi Nakada2021-08-211-8/+5
| | | | `rb_cData` has been deprecated for years.
* Allow omission of parentheses in one line pattern matching [Feature #16182]Kazuki Tsujimoto2021-08-191-1/+7
|
* Manually picking https://github.com/ruby/optparse/pull/14Hiroshi SHIBATA2021-07-2844-1339/+0
|
* [ruby/optparse] Remove an errant { character ↵Olle Jonsson2021-07-281-1/+1
| | | | | | (https://github.com/ruby/optparse/pull/26) https://github.com/ruby/optparse/commit/47417f1b4c
* [ruby/optparse] Fix link in included fileBurdette Lamar2021-07-281-1/+1
| | | | https://github.com/ruby/optparse/commit/bf03038d95
* [ruby/optparse] More on tutorial (https://github.com/ruby/optparse/pull/24)Burdette Lamar2021-07-284-22/+203
| | | | | | | - Adds section "Parsing" to tutorial.rdoc. - Removes section "Terminators" from option_params.rdoc. (Terminator '--' is not an option parameter.) https://github.com/ruby/optparse/commit/40d51ccbad
* [ruby/optparse] More on tutorial (https://github.com/ruby/optparse/pull/23)Burdette Lamar2021-07-282-11/+73
| | | | | | | | - Removed a largish block of repeated text. - Added sections "Top List and Base List" and "Methods for Defining Options" (on, define, etc.). - Linked from class OptionParser doc to the tutorial. https://github.com/ruby/optparse/commit/7f3195b9db
* [ruby/optparse] Removed a duplicate sectionNobuyoshi Nakada2021-07-281-36/+0
| | | | https://github.com/ruby/optparse/commit/7ef3d89e78
* [ruby/optparse] More on tutorial (https://github.com/ruby/optparse/pull/22)Burdette Lamar2021-07-284-24/+135
| | | | | | | Adds argument abbreviation in option_params.rdoc. Adds entire Argument Values section to tutorial.rdoc. https://github.com/ruby/optparse/commit/9c5b3f244b
* [ruby/optparse] Rdoc for help (https://github.com/ruby/optparse/pull/21)Burdette Lamar2021-07-285-0/+165
| | | | https://github.com/ruby/optparse/commit/d07cb96a96
* [ruby/optparse] Tutorial: explain custom argument converters ↵Burdette Lamar2021-07-284-4/+83
| | | | | | (https://github.com/ruby/optparse/pull/19) https://github.com/ruby/optparse/commit/385dd4322d
* [ruby/optparse] Fixed mismatched <tt> tagNobuyoshi Nakada2021-07-281-1/+1
| | | | https://github.com/ruby/optparse/commit/7e65ef3cfa
* [ruby/optparse] Enhanced doc for option parameters ↵Burdette Lamar2021-07-2837-0/+1106
| | | | | | (https://github.com/ruby/optparse/pull/11) https://github.com/ruby/optparse/commit/5618eeb49e
* [ruby/optparse] More on tutorial (https://github.com/ruby/optparse/pull/9)Burdette Lamar2021-07-2810-54/+133
| | | | | | | | | | | | * More on tutorial * More on tutorial * More on tutorial * More on tutorial: clearer example output https://github.com/ruby/optparse/commit/84dfd92d2a
* [ruby/optparse] Beginnings of tutorialBurdetteLamar2021-07-285-0/+154
| | | | https://github.com/ruby/optparse/commit/f209276f79
* Update Capturing and Anchors sections of regexp documentionJeremy Evans2021-07-271-5/+31
| | | | | | | Document that only first 9 numbered capture groups can use the \n backreference syntax. Document \0 backreference. Document \K anchor. Fixes [Bug #14500]
* [DOC] Fixed the description of regexp alternations [ci skip]Ulysses Zhan2021-07-221-2/+2
|
* Doc guide for class/module (#4600)Burdette Lamar2021-07-182-211/+281
| | | Co-authored-by: Marivaldo Cavalheiro <marivaldo@gmail.com>
* One-line pattern matching is no longer experimentalKazuki Tsujimoto2021-07-171-1/+1
| | | | https://github.com/ruby/dev-meeting-log/blob/master/DevelopersMeeting20210715Japan.md#feature-17724-make-the-pin-operator-support-instanceclassglobal-variables-jeremyevans0
* Add pattern matching pin support for instance/class/global variablesJeremy Evans2021-07-151-1/+31
| | | | | | | | | | | Pin matching for local variables and constants is already supported, and it is fairly simple to add support for these variable types. Note that pin matching for method calls is still not supported without wrapping in parentheses (pin expressions). I think that's for the best as method calls are far more complex (arguments/blocks). Implements [Feature #17724]
* Fix default prompt mode in doc/irb/irb.rd.jaKazuhiro NISHIYAMA2021-07-021-2/+2
|
* Add scheduler hook `Addrinfo.getaddrinfo`. (#4375)Samuel Williams2021-06-141-0/+7
| | | Co-authored-by: Bruno Sutic <code@brunosutic.com>
* Promote net-smtp to the bundled gemsHiroshi SHIBATA2021-05-272-5/+3
|
* Promote net-pop to the bundled gemsHiroshi SHIBATA2021-05-272-5/+3
|
* Promote net-imap to the bundled gemsHiroshi SHIBATA2021-05-272-5/+3
|
* Promote net-ftp to the bundled gemsHiroshi SHIBATA2021-05-272-5/+3
|
* Promote matrix to the bundled gemsHiroshi SHIBATA2021-05-272-5/+3
|
* Promote prime to the bundled gemsHiroshi SHIBATA2021-05-272-5/+3
|
* Removed gdbm from ruby repoHiroshi SHIBATA2021-05-252-5/+0
|
* Removed dbm from ruby repoHiroshi SHIBATA2021-05-252-5/+0
|
* Removed tracer from ruby repoHiroshi SHIBATA2021-05-252-5/+0
|
* xibbar is retired from cgi.rb maintainerHiroshi SHIBATA2021-05-241-1/+1
|
* Remove extra word in heredoc documentationJeremy Evans2021-05-201-1/+1
| | | | | | From Thibault Jouan Fixes [Misc #17872]
* Update keyword argument description in method syntax guideJeremy Evans2021-05-111-77/+9
| | | | | | | Remove discussion of Ruby 2.7 specific handling of keyword argument separation. Add a small example of keyword to positional hash conversion for methods not accepting keyword arguments.
* What's Here for class Dir (#4472)Burdette Lamar2021-05-071-0/+8
| | | | What's Here for class Dir
* Update Time documentationBurdette Lamar2021-04-298-0/+25
|
* Fix some typos by spell checkerRyuta Kamizono2021-04-261-1/+1
|
* [Doc] Fix a typo s/evel/eval/wonda-tea-coffee2021-04-251-1/+1
|
* [Doc] Fix a typo s/invokations/invocations/wonda-tea-coffee2021-04-251-1/+1
|
* [ruby/optparse] Moved rdoc files to doc/optparseNobuyoshi Nakada2021-04-1151-0/+0
| | | | https://github.com/ruby/optparse/commit/cccb28e0de
* [ruby/optparse] Fix relative pathsNobuyoshi Nakada2021-04-111-2/+2
| | | | https://github.com/ruby/optparse/commit/8be031b539
* [ruby/optparse] More on tutorial (#16)Burdette Lamar2021-04-116-3/+180
| | | | | | | | | | | - Added example in "Argument Converters"; it doesn't seem right for a tutorial to have no example in one of its topics (and instead just linking elsewhere). - Added section "Command-Line Abbreviations." - Added section "Keyword Argument into," showing how to: - Collect options. - Check for missing options. - Provide option defaults. https://github.com/ruby/optparse/commit/39d39676c4