| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-01-26 | CFLAGS includes ARCH_FLAG | Nobuyoshi Nakada | |
| 2021-01-26 | Removed YYUSE [Bug #17582] | Nobuyoshi Nakada | |
| Although it was used just to suppress an "unsed argument" warning in the same manner as other bison-provided functions, it has been dropped since Bision 3.7.5. And we always suppress that warnings. Notes: Merged: https://github.com/ruby/ruby/pull/4121 | |||
| 2021-01-26 | vcs.rb: fix for baseruby 2.2 | Nobuyoshi Nakada | |
| 2021-01-26 | * 2021-01-26 [ci skip] | git | |
| 2021-01-26 | vcs.rb: support `d` command in log-fix | Nobuyoshi Nakada | |
| 2021-01-26 | vcs.rb: allow log-fix to insert an empty line | Nobuyoshi Nakada | |
| 2021-01-25 | [ruby/rdoc] Support iso-strict format in git-log | Nobuyoshi Nakada | |
| https://github.com/ruby/rdoc/commit/2a6c22da63 | |||
| 2021-01-25 | [ruby/rdoc] Support other date formats in git-log | Nobuyoshi Nakada | |
| https://github.com/ruby/rdoc/commit/ad8cf37d72 | |||
| 2021-01-25 | * 2021-01-25 [ci skip] | git | |
| 2021-01-25 | Clear each test own temporary directories | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/4117 | |||
| 2021-01-24 | Revert "Remove temporary directory properly" | Nobuyoshi Nakada | |
| This reverts commit 80bad36989bbc4ad6167fe9670327f95b78089ce, because a few CI machines fail continuously. | |||
| 2021-01-24 | Remove temporary directory properly | Nobuyoshi Nakada | |
| For each `make check`, rubygems test makes "tmp" directory and some "gem_generate_index..." directories remain there. * Do not create a (fixed name) directory in the current working directory * Should remove its own temporary directory Notes: Merged: https://github.com/ruby/ruby/pull/4115 | |||
| 2021-01-24 | [ruby/rdoc] Skip non-date logs by git-log | Nobuyoshi Nakada | |
| `RDoc::Parser::ChangeLog` mis-parses ChangeLog generated by git-log, because of too heuristic `Time.parse`. For instance, "commit 8187228de0142d3ac7950b7d977c2849e934c637" results in "8187-08-16", that is, day 228 in the year 8187. https://github.com/ruby/rdoc/commit/9711e6f6d9 | |||
| 2021-01-24 | [ruby/rdoc] Sort by CommitDate if available | Nobuyoshi Nakada | |
| https://github.com/ruby/rdoc/commit/455715e930 | |||
| 2021-01-24 | [ruby/rdoc] Add links to the commits | Nobuyoshi Nakada | |
| https://github.com/ruby/rdoc/commit/1821628076 | |||
| 2021-01-24 | [ruby/rdoc] Shorten commit hashes | Nobuyoshi Nakada | |
| https://github.com/ruby/rdoc/commit/5d3e153963 | |||
| 2021-01-24 | [ruby/rdoc] Tweak log entry markdown | Nobuyoshi Nakada | |
| * add 3 levels to headings * prefix commit log to labels to make unique IDs https://github.com/ruby/rdoc/commit/5074c13209 | |||
| 2021-01-24 | [ruby/rdoc] Make each commit entries h3 | Nobuyoshi Nakada | |
| https://github.com/ruby/rdoc/commit/11eefb2ae9 | |||
| 2021-01-24 | [ruby/rdoc] Support ChangeLog generated by `git log` | Nobuyoshi Nakada | |
| https://github.com/ruby/rdoc/commit/5e0a123ca1 | |||
| 2021-01-24 | [ruby/rdoc] Fix failing test by adding gettext as a development dependency | Dorian MariƩ | |
| The failing test was: ======================================================================================== rdoc/test/rdoc/test_rdoc_i18n_locale.rb:35:in `rescue in test_load_existent_po' Omission: gettext gem is not found [test_load_existent_po(TestRDocI18nLocale)] ======================================================================================== https://github.com/ruby/rdoc/commit/e5f85839e1 | |||
| 2021-01-24 | Add test for String#casecmp? | NARUSE, Yui | |
| String#casecmp? also normalize upper case characters in legacy encodings. | |||
| 2021-01-24 | Moved --verbose, --verbose and --help options to last [ci skip] | Nobuyoshi Nakada | |
| 2021-01-24 | * 2021-01-24 [ci skip] | git | |
| 2021-01-24 | [ruby/irb] Indent correctly with method calling with receiver | aycabta | |
| https://github.com/ruby/irb/commit/e7c68e74a0 | |||
| 2021-01-24 | [ruby/irb] Indent correctly with keyword "for" and "in" | aycabta | |
| https://github.com/ruby/irb/commit/47c83ea724 | |||
| 2021-01-23 | Update power_assert to 2.0.0 | Kazuki Tsujimoto | |
| 2021-01-23 | Sort autogenerated dependencies [ci skip] | Nobuyoshi Nakada | |
| 2021-01-23 | Warn the defined location as deprecation as well as the main message | Nobuyoshi Nakada | |
| [Bug #17575] | |||
| 2021-01-23 | coroutine/emscripten/: Experimentally support emscripten fiber API | Yusuke Endoh | |
| 2021-01-23 | configure.ac: Add some compiler options for emscripten | Yusuke Endoh | |
| "-lc" and "-s ALLOW_MEMORY_GROWTH=1" are needed | |||
| 2021-01-23 | bignum.c: Make sure the argument of LONG2FIX is long | Yusuke Endoh | |
| ... because BDIGIT_DBL may be long long. POSFIXABLE and NEGFIXABLE ensures that the value is representable as long, but it failed to build on emscripten with -Werror -Wshorten-64-to-32. | |||
| 2021-01-23 | thread_pthread.c: pthread_kill is not available on emscripten | Yusuke Endoh | |
| 2021-01-23 | io.c: popen is not available on emscripten | Yusuke Endoh | |
| 2021-01-23 | Rationalize floats in coerce [Bug #17572] | Nobuyoshi Nakada | |
| 2021-01-23 | Fix a warning | Kazuhiro NISHIYAMA | |
| ``` .../ruby/test/net/http/test_httpresponse.rb:81: warning: constant RubyVM::MJIT is deprecated ``` | |||
| 2021-01-23 | Make reciprocal properly of non-integral rational [Bug #17572] | Nobuyoshi Nakada | |
| 2021-01-23 | [ruby/net-http] Replace "iff" with "if and only if" | Gannon McGibbon | |
| iff means if and only if, but readers without that knowledge might assume this to be a spelling mistake. To me, this seems like exclusionary language that is unnecessary. Simply using "if and only if" instead should suffice. https://github.com/ruby/net-http/commit/ffb87cad32 | |||
| 2021-01-23 | gc.c: stop overflow check on emscripten build | Yusuke Endoh | |
| 2021-01-23 | configure.ac: Stop -fstack-protector on emscripten build | Yusuke Endoh | |
| 2021-01-23 | vcs.rb: continue just with warning if failed to fetch notes | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/4109 | |||
| 2021-01-23 | vcs.rb: include commit info in ChangeLog | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/4109 | |||
| 2021-01-23 | [rubygems/rubygems] Replace "iff" with "whether" and "if and only if" | Gannon McGibbon | |
| iff means if and only if, but readers without that knowledge might assume this to be a spelling mistake. To me, this seems like exclusionary language that is unnecessary. Simply using "if and only if" or "whether" should suffice. https://github.com/rubygems/rubygems/commit/88318ebc6d | |||
| 2021-01-23 | * 2021-01-23 [ci skip] | git | |
| 2021-01-22 | What's Here for String RDoc (#4093) | Burdette Lamar | |
| * What's Here for String RDoc Notes: Merged-By: BurdetteLamar <BurdetteLamar@Yahoo.com> | |||
| 2021-01-22 | Support coroutine on universal binary | Nobuyoshi Nakada | |
| 2021-01-22 | Keep ARCH_OPTION for arm64 | Nobuyoshi Nakada | |
| 2021-01-22 | Added include guards to coroutine headers | Nobuyoshi Nakada | |
| 2021-01-22 | Do not set target_alias if unset | Nobuyoshi Nakada | |
| 2021-01-22 | Adjust CPU name as arm64-darwin | Nobuyoshi Nakada | |
| config.sub replaces arm64 with aarch64. | |||
| 2021-01-22 | Remove common output directory | Nobuyoshi Nakada | |
