summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2019-07-19Document required keyword argument syntax [ci skip]Jeremy Evans
Fixes [Bug #8952]
2019-07-19Remove doc/etc.rd.ja [ci skip]Kazuhiro NISHIYAMA
[Feature #16003] [ruby-dev:50814]
2019-07-15doc/globals.rdoc: Add deprecated to TRUE,FALSE,NIL [ci skip]Kazuhiro NISHIYAMA
They are warned since 2.4.0.
2019-07-14Add bug triaging guideJeremy Evans
Implements [Misc #15943]
2019-07-15doc/irb/irb.rd.ja: Update options from `irb -h` [ci skip]Kazuhiro NISHIYAMA
2019-07-15[DOC] Struct::Passwd#uclass renamed from #class at r2500 [ci skip]Kazuhiro NISHIYAMA
2019-07-14doc/globals.rdoc: Add RUBY_REVISION [ci skip]Kazuhiro NISHIYAMA
2019-07-14doc/globals.rdoc: Add RUBY_PATCHLEVEL [ci skip]Kazuhiro NISHIYAMA
2019-07-14doc/globals.rdoc: Add RUBY_COPYRIGHT [ci skip]Kazuhiro NISHIYAMA
2019-07-14doc/globals.rdoc: Add TOPLEVEL_BINDING [ci skip]Kazuhiro NISHIYAMA
2019-07-14[DOC] Fix typos [ci skip]Kazuhiro NISHIYAMA
2019-07-14[DOC] Fix indent [ci skip]Kazuhiro NISHIYAMA
2019-07-14[DOC] Fix link to feature [ci skip]Kazuhiro NISHIYAMA
2019-07-14Fix typos [ci skip]Kazuhiro NISHIYAMA
2019-07-14[DOC] Fix experimental marker [ci skip]Kazuhiro NISHIYAMA
2019-07-13[DOC] Markup code in globals.rdocNobuyoshi Nakada
Look forward to further improvements in RDoc to automatically mark up global variables and global constants.
2019-07-13Improve documentation in doc/globals.rdocBenoit Daloze
2019-07-13Document $~ before dependent global variablesBenoit Daloze
2019-07-13Improve documentation of $LOAD_PATHBenoit Daloze
2019-07-13Document $LOAD_PATH.resolve_feature_path in globals.rdocBenoit Daloze
* RDoc does not seem to support documenting singleton object methods, and making $LOAD_PATH a class as a workaround is too weird.
2019-07-13Document a few more RUBY_* constantsBenoit Daloze
2019-07-13Document the long form of global variables and mention aliases on the same lineBenoit Daloze
* 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.
2019-07-02Remove Changelog section from doc/contributing.rdoc [ci skip]Jeremy Evans
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]
2019-07-02Prefer master rather than trunk in doc/contributing.rdoc [ci skip]Kazuhiro NISHIYAMA
2019-07-02[DOC] Add LibreSSL [ci skip]Kazuhiro NISHIYAMA
2019-06-26[DOC] Add spaces [ci skip]Kazuhiro NISHIYAMA
2019-06-26[DOC] Fix svn account [ci skip]Kazuhiro NISHIYAMA
2019-06-25Improve wording of Local Variables and eval sectionJeremy Evans
As pointed out by nobu, "defined" should be used instead of "assigned".
2019-06-26* remove trailing spaces.git
2019-06-25Document local variable interactions with evalJeremy Evans
Fixes [Bug #13337]
2019-06-20Added and update the racc entries on doc/*.Hiroshi SHIBATA
2019-06-18[DOC] non-nil `$,`,`$;` will be deprecated [ci skip]Kazuhiro NISHIYAMA
``` % ruby -e '$,=""; $;=""' -e:1: warning: non-nil $, will be deprecated -e:1: warning: non-nil $; will be deprecated ```
2019-06-03Add reline to doc/maintainers.rdocKazuhiro NISHIYAMA
2019-06-01Add myself as OpenBSD platform maintainerJeremy Evans
2019-05-21Add --colorize and --nocolorize options to IRBaycabta
2019-05-03Fix typoMarcus Stollsteimer
2019-04-30Use Ripper for IRBaycabta
The debug option of IRB is deleted because it's just for IRB's pure Ruby parser.
2019-04-29Disallow also CR in here-doc identifierNobuyoshi Nakada
* 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.
2019-04-29parse.y: fix here-doc identifier with newlineNobuyoshi Nakada
* 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 ```
2019-04-28Reduce matz's work, let git do it insteadNobuyoshi Nakada
2019-04-27Added ChangeLog marker for the beginning of 2.7.0Nobuyoshi Nakada
2019-04-27Updated marked commits for ChangeLogNobuyoshi Nakada
2019-04-23Revert "IRB is improved with Reline and RDoc, take 2"Nobuyoshi Nakada
Accidentally merged when 89271d4a3733bc5e70e9c56b4bd12f277e699c42 "Adjusted indents".
2019-04-23IRB is improved with Reline and RDoc, take 2aycabta
2019-04-22Tk is already removed from stdlib at r55844Kazuhiro NISHIYAMA
https://github.com/ruby/ruby/commit/303dc3c591e324b6bbc691326d8bea76fe3b8fda
2019-04-22CRuby trunk uses git instead of subversion nowKazuhiro NISHIYAMA
2019-04-21Revert "IRB is improved with Reline and RDoc"aycabta
This reverts commit 7f273ac6d0f05208b5b228da95205e20c0e8286c. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2019-04-21ubygems.rb is already removed from ruby repository.hsbt
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67664 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2019-04-20IRB is improved with Reline and RDocaycabta
Reline is a readline stdlib compatible library. It also supports multiline input. IRB is improved with Reline and supports multiline. Besides, supports showing documents when completed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67645 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2019-04-18Take over strscan maintenancekou
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67601 b2dd03c8-39d4-4d8f-98ff-823fe69b080e