| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-09-13 | Links for What's Here sections (#4827) | Burdette Lamar | |
| Makes What's Here sections in Time and Dir link to What's Here for super and included modules (like all the others). Notes: Merged-By: BurdetteLamar <BurdetteLamar@Yahoo.com> | |||
| 2021-09-13 | Fixup 455978cd133f27fab9e2bfa4301efd3b7c7d0462 | Hiroshi SHIBATA | |
| 2021-09-13 | Use capture_output instead of capture_io | Hiroshi SHIBATA | |
| 2021-09-13 | Rename capture_io to capture_output and deprecate to use capture_io | Hiroshi SHIBATA | |
| 2021-09-13 | Removed unused mu_pp method | Hiroshi SHIBATA | |
| 2021-09-13 | Renamed skip to pend and prepared to deprecate skip method | Hiroshi SHIBATA | |
| 2021-09-13 | Add unique token to separated runner | Nobuyoshi Nakada | |
| Same as Test::Unit::CoreAssertions#assert_no_memory_leak. | |||
| 2021-09-13 | Removed workaround for test_order | Hiroshi SHIBATA | |
| Notes: Merged: https://github.com/ruby/ruby/pull/4828 | |||
| 2021-09-13 | Adds mixed hash value and value omission tests | Brandon Weaver | |
| Introduces specification tests for mixed values and value omissions for Hashes and keyword arguments, such as `{ a:, b:, c: 3 }`. Notes: Merged: https://github.com/ruby/ruby/pull/4829 | |||
| 2021-09-13 | Revert "Resolved conflict initializers" | Hiroshi SHIBATA | |
| This reverts commit 62db6e47b6c0fbba337649bfa468ec221d5d1001. 308183fffab43f1e111d5bb4c60f1380432966e6 is the correct solution about this. | |||
| 2021-09-13 | Fixed leaked file descriptor | Hiroshi SHIBATA | |
| Leaked file descriptor: TestRDocGeneratorDarkfish#test_template_stylesheets: 11 : #<File:./tmp20210913-30865-7c4ey8/hoge20210913-30865-evm2uo.css> | |||
| 2021-09-13 | [ruby/reline] Use expanded method definitions instead of refinements | aycabta | |
| @jhawthorn said, "this will make Ruby's integer comparisons slower globally." It looks like "binding.irb" is going to cause serious problems in Rails applications. https://github.com/ruby/reline/commit/ee8d6c6a82 | |||
| 2021-09-13 | coroutine enables assembly version for dragonflybsd. | DC | |
| Notes: Merged: https://github.com/ruby/ruby/pull/4823 | |||
| 2021-09-13 | Downloader: accept some RFC 2616 noncompliant dates | Nobuyoshi Nakada | |
| 2021-09-13 | * 2021-09-13 [ci skip] | git | |
| 2021-09-12 | [ruby/openssl] Add fallthrough comments | Nobuyoshi Nakada | |
| https://github.com/ruby/openssl/commit/258e30b640 | |||
| 2021-09-12 | [ruby/openssl] Suppress cast-function-type warnings | Nobuyoshi Nakada | |
| https://github.com/ruby/openssl/commit/0f91e2a6ee | |||
| 2021-09-12 | [ruby/openssl] Separate formatting from ossl_make_error | Nobuyoshi Nakada | |
| Just append OpenSSL error reason to the given message string object, which would be alreadly formatted. Suppress -Wformat-security warning in `ossl_tsfac_create_ts`. https://github.com/ruby/openssl/commit/11b1d8a6b8 | |||
| 2021-09-12 | [ruby/openssl] Suppress printf format warnings | Nobuyoshi Nakada | |
| * Add `printf` format attribute to `ossl_raise`. * Fix a format specifier in `config_load_bio`. * Use `ASSUME` for the unreachable condition. https://github.com/ruby/openssl/commit/41da2955db | |||
| 2021-09-12 | Add benchmarks to create Time instances | Nobuyoshi Nakada | |
| 2021-09-12 | Add printf attribute to functions call va_list format functions | Nobuyoshi Nakada | |
| 2021-09-12 | Extract backref_number_check | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/4822 | |||
| 2021-09-12 | Preserve the encoding of the argument in IndexError [Bug #18160] | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/4822 | |||
| 2021-09-12 | Using RB_FLOAT_TYPE_P macro | S-H-GAMELINKS | |
| Notes: Merged: https://github.com/ruby/ruby/pull/4821 | |||
| 2021-09-12 | Replace RB_TYPE_P macro to FIXNUM_P and RB_INTEGER_TYPE_P macro | S-H-GAMELINKS | |
| Notes: Merged: https://github.com/ruby/ruby/pull/4816 | |||
| 2021-09-12 | * 2021-09-12 [ci skip] | git | |
| 2021-09-12 | Exclude option_parser from Test::Unit::Runner#inspect | Nobuyoshi Nakada | |
| 2021-09-12 | Prepend the modules in Test::Unit | Nobuyoshi Nakada | |
| Needs to override Test::Unit::Runner#run, so that RunCount#run runs which increments @@run_count. Previously it worked because these methods were inserted between Test::Unit::Runner#run and MiniTest::Unit#run. | |||
| 2021-09-11 | Hash values should be omitted in Ripper results | Shugo Maeda | |
| 2021-09-11 | Removed unsed assertions for rubygems | Hiroshi SHIBATA | |
| 2021-09-11 | Removed unused alias for run_test | Hiroshi SHIBATA | |
| 2021-09-11 | Add documentation and tests for keyword argument value omission | Shugo Maeda | |
| [Feature #14579] | |||
| 2021-09-11 | [DOC] NEWS for [Feature #14579] [ci skip] | Nobuyoshi Nakada | |
| 2021-09-11 | [DOC] Fixed indents in NEWS.md [ci skip] | Nobuyoshi Nakada | |
| 2021-09-11 | [DOC] Separate paragraph in LEGAL instead of break lines [ci skip] | Nobuyoshi Nakada | |
| Although trailing spaces in Markdown breaks the line, it is often overlooked. | |||
| 2021-09-11 | Another test for [Feature #14579] | Nobuyoshi Nakada | |
| The value of the dynamic key cannot be omitted for now. | |||
| 2021-09-11 | Allow value omission in Hash literals | Shugo Maeda | |
| `{x:, y:}` is a syntax sugar of `{x: x, y: y}`. | |||
| 2021-09-11 | Drop to Ruby 1.8 related code | Hiroshi SHIBATA | |
| 2021-09-11 | Removed rubinius support from test suite | Hiroshi SHIBATA | |
| 2021-09-11 | Removed maglev related code because it's not active status now | Hiroshi SHIBATA | |
| 2021-09-11 | Suppress deprecated rb_iterate declaration warnings in C++ | Nobuyoshi Nakada | |
| Apply commit:733ffa74cd32a5c11ff744a5490782daa00ff1ae again. | |||
| 2021-09-11 | Update comments for minitest | Nobuyoshi Nakada | |
| 2021-09-11 | Update an option message | Nobuyoshi Nakada | |
| 2021-09-11 | Directly alias orig_run_suite | Nobuyoshi Nakada | |
| 2021-09-11 | Remove method filter hack for minitest | Nobuyoshi Nakada | |
| 2021-09-11 | [ruby/rdoc] Convert upper case copyright and registered marks | Nobuyoshi Nakada | |
| https://github.com/ruby/rdoc/commit/3bca7dc093 | |||
| 2021-09-11 | [ruby/rdoc] Convert tick double quote in character entity references | Nobuyoshi Nakada | |
| https://github.com/ruby/rdoc/commit/6ed889aac9 | |||
| 2021-09-11 | [ruby/rdoc] Convert a backtick to an open single quote | Nobuyoshi Nakada | |
| https://github.com/ruby/rdoc/commit/82eaefbae4 | |||
| 2021-09-11 | [ruby/rdoc] Convert single quotes in character entity references | Nobuyoshi Nakada | |
| As well as double quotes. https://github.com/ruby/rdoc/pull/824#discussion_r683173389 https://github.com/ruby/rdoc/commit/09002bdab5 | |||
| 2021-09-11 | Update the test tool path | Nobuyoshi Nakada | |
