summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-12-24Update the news entries for RubyGems and BundlerHiroshi SHIBATA
2019-12-24[ruby/irb] Fix typoMarcus Stollsteimer
https://github.com/ruby/irb/commit/4bb1340687
2019-12-24[DOC] Fix grammar in Process module docsMarcus Stollsteimer
2019-12-24[DOC] Fix typoMarcus Stollsteimer
2019-12-24`Object#=~` warning also obeys `Warning[:deprecated]`Nobuyoshi Nakada
2019-12-24Scale sleeping times to wait for the OS operationsNobuyoshi Nakada
2019-12-24Remove unused variableaycabta
2019-12-24The delete-char-or-list shows completed list when called at end of lineaycabta
It doesn't behave the same as the delete-char.
2019-12-24NEWS: fix method references for Range#{cover?,include?}Marcus Stollsteimer
2019-12-24NEWS: improve sections for warning option / WarningMarcus Stollsteimer
2019-12-24[DOC] Improve docs for Enumerator.produce, Enumerator.newMarcus Stollsteimer
2019-12-24Synchronize with a Queue instead of sleepingNobuyoshi Nakada
2019-12-24Revert "Scale sleeping times"Koichi Sasada
This reverts commit e57d6194218efc73c30f3fed9dd321d2e357030b. Test fails: http://ci.rvm.jp/results/trunk-gc-asserts@ruby-sky1/2518563 http://ci.rvm.jp/results/trunk-gc_compact@silicon-docker/2518533
2019-12-24NEWS: added references to warning option [ci skip]Nobuyoshi Nakada
2019-12-24Scale sleeping timesNobuyoshi Nakada
2019-12-24Moved warning option section and added a reference [ci skip]Nobuyoshi Nakada
2019-12-24Added warning.rb to .documentNobuyoshi Nakada
2019-12-24Added `-W:experimental` to `--help` [Feature #16420]Nobuyoshi Nakada
2019-12-24Separated command line option in NEWS [ci skip]Nobuyoshi Nakada
2019-12-24Mentioned `-W:` command option in NEWS [ci skip]Nobuyoshi Nakada
2019-12-24Enhance explanations for beginless range and #clamp, and add missing featurezverok
Notes: Merged: https://github.com/ruby/ruby/pull/2769
2019-12-24Get rid of false positive misspellingsNobuyoshi Nakada
[Bug #16437]
2019-12-24enc/x_emoji.h: fixed dead-links [ci skip]Nobuyoshi Nakada
English version pages seem no longer provided.
2019-12-24Added NEWS for Feature 15373manga_osyo
Notes: Merged: https://github.com/ruby/ruby/pull/2777
2019-12-24remove "experimental" from numbered parameter.Koichi Sasada
Numbered parameter is not an experimental feature, confirmed by Matz. https://twitter.com/yukihiro_matz/status/1209271452798607361
2019-12-24[ruby/reline] Version 0.1.0aycabta
https://github.com/ruby/reline/commit/55d4dfec1e
2019-12-24[ruby/irb] Version 1.2.1aycabta
https://github.com/ruby/irb/commit/8da0c74640
2019-12-24[ruby/irb] Remove warning message to bundle on Ruby 2.7.0aycabta
https://github.com/ruby/irb/commit/d9a7844f50
2019-12-24[DOC] Fix wording in Math::E documentationMarcus Stollsteimer
2019-12-24[ruby/rdoc] Version 6.2.1aycabta
https://github.com/ruby/rdoc/commit/c65e14d112
2019-12-24Update parsers of RDoc that are generated by Raccaycabta
2019-12-24[ruby/rdoc] Support newline in the middle of constant definitionaycabta
https://github.com/ruby/rdoc/commit/74d3984324
2019-12-24[ruby/rdoc] Treat Proc#call syntax sugar for constant correctlyaycabta
https://github.com/ruby/rdoc/commit/957d041ae0
2019-12-23Reword keyword arguments warning messages to convey these are deprecation ↵Marc-Andre Lafortune
warnings
2019-12-23[DOC] Fix invalid code to make it syntax highlightedMarcus Stollsteimer
2019-12-23[DOC] Use capitalized "Ruby"Marcus Stollsteimer
2019-12-23[DOC] Various fixes in bug triaging guideMarcus Stollsteimer
2019-12-24* 2019-12-24 [ci skip]git
2019-12-24move a NEWS entry about inline method cacheKoichi Sasada
2019-12-23[DOC] Improve readability of requirements for <=>Marcus Stollsteimer
2019-12-23NEWS: add reference for [Feature #14405]Marcus Stollsteimer
2019-12-23NEWS: revise grammar, language, markup, etc.Marcus Stollsteimer
2019-12-23NEWS: fix some typos, grammar, and languageMarcus Stollsteimer
2019-12-23fix wmap_finalize.Koichi Sasada
wmap_finalize expects id2ref() returns a corresponding object even if the object is dead. Make id2ref_obj_tbl() for this purpose.
2019-12-23add more debug counters to count numeric objects.Koichi Sasada
2019-12-23NEWS: Fix issue reference [#15807] [DOC]Marc-Andre Lafortune
2019-12-23README: Add Range#minmax to the list of potential incompatibilities [#15929] ↵Marc-Andre Lafortune
[DOC]
2019-12-23README: Improve wording [DOC]Marc-Andre Lafortune
2019-12-23NEWS: Hint at potential incompatibility with Range#minmax [#15807]Marc-Andre Lafortune
2019-12-23ObjectSpace._id2ref should check liveness.Koichi Sasada
objspace->id_to_obj_tbl can contain died objects because of lazy sweep, so that it should check liveness.