aboutsummaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Document {n}? regexp pattern is optional and not non-greedy [ci skip]Jeremy Evans2019-08-281-2/+5
| | | | | | | While not consistent with {n,}?, {,m}?, and {n,m}?, it is arguably more useful, as otherwise the ? would have no effect. Fixes [Bug #15583]
* Marked up command line options [ci skip]Nobuyoshi Nakada2019-08-161-7/+7
|
* Use the word heredocs in Here Documents docsOlivier Lacan2019-08-041-1/+1
| | | | | | | | | | | | | | | | Two advantages: - higher relevance of the extremely common word "heredocs" which may help people find this page when searching for "ruby heredocs" - the anchor link becomes `#label-Here+Documents+-28heredocs-29`, which is ugly due to the parentheses but includes the word "heredocs" in the URL to this section If anyone knows a way to prevent RDoc from turning invalid characters into ugly and meaningless ASCII codes, I'm listening. I don't want to break existing anchor links but RDoc should really ignore these characters or turn them into dashes. Closes: https://github.com/ruby/ruby/pull/2103
* [DOC] mentioned minimum versions of tools [ci skip]Nobuyoshi Nakada2019-08-031-3/+3
|
* Document behavior when mixing named captures with parentheses [ci skip]Jeremy Evans2019-07-261-1/+9
| | | | Fixes [Bug #13716]
* Added the upstream repositories to default gems.Hiroshi SHIBATA2019-07-231-0/+16
|
* reline is default gems now.Hiroshi SHIBATA2019-07-231-2/+2
|
* Removed duplicated entry for racc.Hiroshi SHIBATA2019-07-231-4/+2
|
* Document use of ensure and else at method level [ci skip]Jeremy Evans2019-07-191-0/+22
|
* Remove section on performance advantage of not using a block parameter [ci skip]Jeremy Evans2019-07-191-5/+0
| | | | | Improvements in Ruby 2.5 and 2.6 make this section no longer accurate.
* Remove mention of Proc.new with implicit block [ci skip]Jeremy Evans2019-07-191-4/+0
| | | | This support is now deprecated and will be removed in Ruby 3.
* Document evaluation order of arguments [ci skip]Jeremy Evans2019-07-191-0/+19
| | | | Fixes [Misc #8905]
* Document required keyword argument syntax [ci skip]Jeremy Evans2019-07-191-0/+11
| | | | Fixes [Bug #8952]
* Remove doc/etc.rd.ja [ci skip]Kazuhiro NISHIYAMA2019-07-191-75/+0
| | | | [Feature #16003] [ruby-dev:50814]
* doc/globals.rdoc: Add deprecated to TRUE,FALSE,NIL [ci skip]Kazuhiro NISHIYAMA2019-07-151-3/+3
| | | | They are warned since 2.4.0.
* Add bug triaging guideJeremy Evans2019-07-141-0/+80
| | | | Implements [Misc #15943]
* doc/irb/irb.rd.ja: Update options from `irb -h` [ci skip]Kazuhiro NISHIYAMA2019-07-151-17/+22
|
* [DOC] Struct::Passwd#uclass renamed from #class at r2500 [ci skip]Kazuhiro NISHIYAMA2019-07-151-1/+1
|
* doc/globals.rdoc: Add RUBY_REVISION [ci skip]Kazuhiro NISHIYAMA2019-07-141-0/+1
|
* doc/globals.rdoc: Add RUBY_PATCHLEVEL [ci skip]Kazuhiro NISHIYAMA2019-07-141-0/+1
|
* doc/globals.rdoc: Add RUBY_COPYRIGHT [ci skip]Kazuhiro NISHIYAMA2019-07-141-0/+1
|
* doc/globals.rdoc: Add TOPLEVEL_BINDING [ci skip]Kazuhiro NISHIYAMA2019-07-141-0/+1
|
* [DOC] Fix typos [ci skip]Kazuhiro NISHIYAMA2019-07-141-16/+16
|
* [DOC] Fix indent [ci skip]Kazuhiro NISHIYAMA2019-07-141-12/+12
|
* [DOC] Fix link to feature [ci skip]Kazuhiro NISHIYAMA2019-07-141-2/+2
|
* Fix typos [ci skip]Kazuhiro NISHIYAMA2019-07-141-4/+4
|
* [DOC] Fix experimental marker [ci skip]Kazuhiro NISHIYAMA2019-07-141-2/+2
|
* [DOC] Markup code in globals.rdocNobuyoshi Nakada2019-07-131-10/+10
| | | | | Look forward to further improvements in RDoc to automatically mark up global variables and global constants.
* Improve documentation in doc/globals.rdocBenoit Daloze2019-07-131-8/+7
|
* Document $~ before dependent global variablesBenoit Daloze2019-07-131-1/+1
|
* Improve documentation of $LOAD_PATHBenoit Daloze2019-07-131-5/+5
|
* Document $LOAD_PATH.resolve_feature_path in globals.rdocBenoit Daloze2019-07-131-1/+4
| | | | | * RDoc does not seem to support documenting singleton object methods, and making $LOAD_PATH a class as a workaround is too weird.
* Document a few more RUBY_* constantsBenoit Daloze2019-07-131-1/+4
|
* Document the long form of global variables and mention aliases on the same lineBenoit Daloze2019-07-131-21/+14
| | | | | * The longer forms are self-explanatory and I believe more often used. * Same for ARGV and ARGF, describe them there and mention $* and $< just refer to them.
* Remove Changelog section from doc/contributing.rdoc [ci skip]Jeremy Evans2019-07-021-37/+29
| | | | | | | | Replace it with a section on commit message formatting. Also, move the section on rebasing to the bottom, since that only applies to committers and not most contributors. Fixes [Bug #14886]
* Prefer master rather than trunk in doc/contributing.rdoc [ci skip]Kazuhiro NISHIYAMA2019-07-021-12/+12
|
* [DOC] Add LibreSSL [ci skip]Kazuhiro NISHIYAMA2019-07-021-1/+1
|
* [DOC] Add spaces [ci skip]Kazuhiro NISHIYAMA2019-06-261-2/+2
|
* [DOC] Fix svn account [ci skip]Kazuhiro NISHIYAMA2019-06-261-1/+1
|
* Improve wording of Local Variables and eval sectionJeremy Evans2019-06-251-7/+7
| | | | As pointed out by nobu, "defined" should be used instead of "assigned".
* * remove trailing spaces.git2019-06-261-1/+1
|
* Document local variable interactions with evalJeremy Evans2019-06-251-0/+22
| | | | Fixes [Bug #13337]
* Added and update the racc entries on doc/*.Hiroshi SHIBATA2019-06-202-1/+4
|
* [DOC] non-nil `$,`,`$;` will be deprecated [ci skip]Kazuhiro NISHIYAMA2019-06-181-2/+2
| | | | | | | | ``` % ruby -e '$,=""; $;=""' -e:1: warning: non-nil $, will be deprecated -e:1: warning: non-nil $; will be deprecated ```
* Add reline to doc/maintainers.rdocKazuhiro NISHIYAMA2019-06-031-0/+2
|
* Add myself as OpenBSD platform maintainerJeremy Evans2019-06-011-0/+2
|
* Add --colorize and --nocolorize options to IRBaycabta2019-05-211-0/+2
|
* Fix typoMarcus Stollsteimer2019-05-031-1/+1
|
* Use Ripper for IRBaycabta2019-04-301-6/+0
| | | | | The debug option of IRB is deleted because it's just for IRB's pure Ruby parser.
* Disallow also CR in here-doc identifierNobuyoshi Nakada2019-04-291-1/+1
| | | | | | * parse.y (heredoc_identifier): CR in here-document identifier might or might not result in a syntax error, by the EOL code. make a syntax error regardless of the EOL code.