summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-12-26methods.rdoc: Improve method definition documentationMarcus Stollsteimer
* typos, grammar, formatting * use `concrete_method` again in `regular_method` example, to better distinguish from `forwarding_method` example * clarify that leading arguments before `...` require Ruby 3.0
2020-12-26methods.rdoc: Clarify "currently" means "in 2.7" hereMarcus Stollsteimer
2020-12-26Update labels of badges [ci skip]Kazuhiro NISHIYAMA
2020-12-26Add 3.0 top sepc guardsNobuyoshi Nakada
* Needs WEBrick
2020-12-26[ruby/racc] Bump version to 1.5.2Hiroshi SHIBATA
https://github.com/ruby/racc/commit/ce0d7b9cde
2020-12-26[ruby/racc] Use Racc::VERSION for gemspecHiroshi SHIBATA
https://github.com/ruby/racc/commit/30f5760d85
2020-12-25Fix a cyclic explanationTakashi Kokubun
2020-12-26Ignore failure on unsupported fcntl to drop non-blocking modeNobuyoshi Nakada
Fixes https://github.com/ruby/ruby/pull/3723 Notes: Merged: https://github.com/ruby/ruby/pull/4000
2020-12-26Fixed leaked global symbolsNobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/4003
2020-12-26Reduced GitHub ActionsNobuyoshi Nakada
Moved leaked-globals before check. Notes: Merged: https://github.com/ruby/ruby/pull/4003
2020-12-26* 2020-12-26 [ci skip]git
2020-12-26Use `size_t` for `RSTRING_LEN` in String#countNobuyoshi Nakada
https://hackerone.com/reports/1042722 Notes: Merged: https://github.com/ruby/ruby/pull/4001
2020-12-25test/test_trick.rb: fixed the position to add timeoutNobuyoshi Nakada
2020-12-25Update method definition documentationzverok
* Add endless methods * Add argument forwarding ... Notes: Merged: https://github.com/ruby/ruby/pull/3997
2020-12-25Adjusted the heading level of "Block Arguments" [ci skip]Nobuyoshi Nakada
2020-12-25test/test_trick.rb: increase timeout of some testsYusuke Endoh
http://rubyci.s3.amazonaws.com/raspbian10-armv7l/ruby-master/log/20201225T071824Z.fail.html.gz
2020-12-25[memory_view] Fix a commentKenta Murata
A consumer of a MemoryView no longer guards the original object. [ci skip]
2020-12-25Follow up on variations of the development start messages [ci skip]Nobuyoshi Nakada
2020-12-25Copy NEWS.md to doc/NEWS-3.0.0.md and update for 3.1.0Kazuhiro NISHIYAMA
2020-12-25Development of 3.1.0 started.Yukihiro "Matz" Matsumoto
2020-12-25test_trick.rb: Make the encoding explicit for code written in UTF-8Nobuyoshi Nakada
2020-12-25fix filenameNARUSE, Yui
2020-12-25test/test_trick.rb: Add a test file for TRICK entries (#3988)Yusuke Endoh
* test/test_trick.rb: Add a test file for TRICK entries Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org> Notes: Merged-By: mame <mame@ruby-lang.org>
2020-12-25Updated bundled_gemsNobuyoshi Nakada
2020-12-25Disable DTrace in FreeBSD (#3999)TAKANO Mitsuhiro
The latest ruby cannot compile with FreeBSD Dtrace enabled. Notes: Merged-By: nurse <naruse@airemix.jp>
2020-12-25Sort URLs by issue numbers and remove duplicated [ci skip]Kazuhiro NISHIYAMA
2020-12-25define RGENGC_DEBUG_ENABLED() as 0Koichi Sasada
on RUBY_DEVEL==0 and !HAVE_VA_ARGS_MACRO. gc_report() is always enabled on such configuration (maybe it is a bug) so disable RGENGC_DEBUG_ENABLED().
2020-12-25Update stdlib section for Ruby 3.0Hiroshi SHIBATA
2020-12-25USE_RUBY_DEBUG_LOG is not defined !devel buildKoichi Sasada
2020-12-24Fix typosMarcus Stollsteimer
2020-12-24[DOC] Fix typosMarcus Stollsteimer
2020-12-25Optimize calls to `Kernel#hash` (#3987)Marc-André Lafortune
This avoids recursive checks when the `hash` method of an object isn't specialized. Notes: Merged-By: nurse <naruse@airemix.jp>
2020-12-25Update TypeProf to 0.11.0 (#3996)Yusuke Endoh
Notes: Merged-By: mame <mame@ruby-lang.org>
2020-12-25[memory_view] Add documentation [ci skip]Kenta Murata
2020-12-25[ruby/reline] 0.2.0aycabta
https://github.com/ruby/reline/commit/064664c8f9
2020-12-25[ruby/irb] Version 1.3.0aycabta
https://github.com/ruby/irb/commit/ec83280e66
2020-12-25Adjusted indents [ci skip]Nobuyoshi Nakada
2020-12-25* 2020-12-25 [ci skip]git
2020-12-25configure.ac: Make it possible to build on Android TermuxYusuke Endoh
The recent Termux's clang predefines `__ANDROID_API__` as a fixed number 24. However, when it is lower to the current device version, some functions that "configure" detemines available are not declared correctly in the header files. This change forces to overwrite the predefined `__ANDROID_API__` macro with the current device version. ref: https://github.com/termux/termux-packages/issues/6176
2020-12-24Updated access to Process::Status attributesNobuyoshi Nakada
pst_pid() no longer returns Qnil even if the receiver is not initialized.
2020-12-24[ruby/reline] Doesn't contain terminate spaces by cwaycabta
This closes ruby/reline#233. https://github.com/ruby/reline/commit/4c3f2e2eae
2020-12-24[ruby/reline] Use #bytesize for vi_replace_charaycabta
This closes ruby/reline#228. https://github.com/ruby/reline/commit/8205fa0b00
2020-12-24[ruby/reline] Delete the last char of a line by dwaycabta
This closes ruby/reline#229. https://github.com/ruby/reline/commit/3f0ae689c4
2020-12-24[ruby/reline] Suppress crashing when boken prompt_list is givenaycabta
https://github.com/ruby/reline/commit/922d087e7a
2020-12-24[ruby/reline] Discard prompt cache by changing mode iconaycabta
https://github.com/ruby/reline/commit/bfeda8a79b
2020-12-24[ruby/irb] Try not to register the exact same measuring method twiceaycabta
https://github.com/ruby/irb/commit/cc66b5573e
2020-12-24Fix a typo [ci skip]Kazuhiro NISHIYAMA
2020-12-24Store errno in struct rb_process_statusNobuyoshi Nakada
To propagate errno in the fiber thread scheduler hook. Returns nil when no terminated process. Notes: Merged: https://github.com/ruby/ruby/pull/3998
2020-12-24Bundle RBS 1.0.0 (#3994)Soutaro Matsumoto
Notes: Merged-By: soutaro <matsumoto@soutaro.com>
2020-12-24doc/syntax/pattern_matching.rdoc: fix typos, grammar, styleMarcus Stollsteimer