aboutsummaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
...
* 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.
* parse.y: fix here-doc identifier with newlineNobuyoshi Nakada2019-04-291-0/+3
| | | | | | | | | | | | | | | * parse.y (heredoc_identifier): quoted here-document identifier must end within the same line. the only corner case that here-document identifier can contain a newline is that the closing qoute is placed at the beginning of the next line, and has been warned since 2.4. ```ruby <<"EOS " # warning: here document identifier ends with a newline EOS ```
* Reduce matz's work, let git do it insteadNobuyoshi Nakada2019-04-283-20/+0
|
* Added ChangeLog marker for the beginning of 2.7.0Nobuyoshi Nakada2019-04-271-0/+8
|
* Updated marked commits for ChangeLogNobuyoshi Nakada2019-04-272-2/+9
|
* Revert "IRB is improved with Reline and RDoc, take 2"Nobuyoshi Nakada2019-04-231-0/+6
| | | | | Accidentally merged when 89271d4a3733bc5e70e9c56b4bd12f277e699c42 "Adjusted indents".
* IRB is improved with Reline and RDoc, take 2aycabta2019-04-231-6/+0
|
* Tk is already removed from stdlib at r55844Kazuhiro NISHIYAMA2019-04-221-1/+0
| | | | https://github.com/ruby/ruby/commit/303dc3c591e324b6bbc691326d8bea76fe3b8fda