| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-02-04 | On Windows it cannot receive fd except 0..2 | NARUSE, Yui | |
| 2020-02-04 | assert_separately uses their own pipe instead of stdout | NARUSE, Yui | |
| 2020-02-01 | Indent ChangeLog contents [ci skip] | Nobuyoshi Nakada | |
| Separate each entries more obviously as `page-delimiter' works fine. | |||
| 2020-02-01 | Explicitly set the encoding of ChangeLog file to UTF-8 [ci skip] | Nobuyoshi Nakada | |
| 2020-02-01 | UnpackedInstaller on rbinstall.rb is inherited from Gem::Installer. | Hiroshi SHIBATA | |
| It also needs to explicitly convert from String to Gem::Package with initialization. | |||
| 2020-02-01 | Gem::Installer.new(String, options) is obsoleted. Explicitly converted | Hiroshi SHIBATA | |
| to Gem::Package from String instance. | |||
| 2020-01-30 | Unnamed groups are not captured when named groups are used | Nobuyoshi Nakada | |
| 2020-01-28 | Minitest::Unit.current_repeat_count | Koichi Sasada | |
| This method returns loop counter for multi-run (0 start). | |||
| 2020-01-28 | Skip empty directories to install [Bug #16596] | Nobuyoshi Nakada | |
| 2020-01-26 | Do not use `git pull` because origin/master was already fetched. | Hiroshi SHIBATA | |
| 2020-01-26 | Show the repository name before update task | Hiroshi SHIBATA | |
| 2020-01-22 | Added usage documentation for sync_default_gems | Hiroshi SHIBATA | |
| 2020-01-22 | Use gem name to specify | aycabta | |
| 2020-01-19 | Test bundled gems with timeout | Nobuyoshi Nakada | |
| 2020-01-13 | test-bundled-gems.rb: Use real paths for symlinks | Nobuyoshi Nakada | |
| 2020-01-12 | vcs.rb: Allow to empty a part in commit log | Nobuyoshi Nakada | |
| 2020-01-12 | Make rss library to the bundle gems | Hiroshi SHIBATA | |
| [Feature #16485][ruby-core:96683] Notes: Merged: https://github.com/ruby/ruby/pull/2832 | |||
| 2020-01-12 | Make rexml library to the bundle gems | Hiroshi SHIBATA | |
| [Feature #16485][ruby-core:96683] Notes: Merged: https://github.com/ruby/ruby/pull/2832 | |||
| 2020-01-10 | Update the upstream repository of bundler | Hiroshi SHIBATA | |
| 2020-01-09 | vcs.rb: Get rid of Kernel#open | Nobuyoshi Nakada | |
| 2020-01-07 | Disable IPv6 on Travis s390x case. (#2819) | Jun Aruga | |
| This fixes following error that sometimes happens once in a few times on Travis s390x environment. ``` $ tool/travis_retry.sh sudo -E apt-add-repository -y "ppa:ubuntu-toolchain-r/test" + sudo -E apt-add-repository -y ppa:ubuntu-toolchain-r/test Error: retrieving gpg key timed out. ``` | |||
| 2019-12-31 | Redmine /projects/ruby-trunk is now redirected | Takashi Kokubun | |
| to /projects/ruby-master | |||
| 2019-12-31 | Test the bundled version minitest instead of master | Nobuyoshi Nakada | |
| Minitest has the released tags now. Notes: Merged: https://github.com/ruby/ruby/pull/2801 | |||
| 2019-12-29 | Separate builtin initialization calls | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/2792 | |||
| 2019-12-27 | Add check_warning_flags to leakchecker | Kazuhiro NISHIYAMA | |
| 2019-12-26 | decouple internal.h headers | 卜部昌平 | |
| Saves comitters' daily life by avoid #include-ing everything from internal.h to make each file do so instead. This would significantly speed up incremental builds. We take the following inclusion order in this changeset: 1. "ruby/config.h", where _GNU_SOURCE is defined (must be the very first thing among everything). 2. RUBY_EXTCONF_H if any. 3. Standard C headers, sorted alphabetically. 4. Other system headers, maybe guarded by #ifdef 5. Everything else, sorted alphabetically. Exceptions are those win32-related headers, which tend not be self- containing (headers have inclusion order dependencies). Notes: Merged: https://github.com/ruby/ruby/pull/2711 | |||
| 2019-12-25 | fix version regexp | NARUSE, Yui | |
| 2019-12-25 | fix typo | NARUSE, Yui | |
| 2019-12-23 | Fixed a typo in an exception class name | Nobuyoshi Nakada | |
| 2019-12-23 | make-snapshot: fixed mode | Nobuyoshi Nakada | |
| "X" must be used in conjunction with "+". | |||
| 2019-12-23 | Fix typo in commit logs by log-fix notes | Nobuyoshi Nakada | |
| 2019-12-22 | Move stats under a dict | NARUSE, Yui | |
| 2019-12-20 | use UTC to use previous day in midnight | NARUSE, Yui | |
| 2019-12-20 | Fixed misspellings | Nobuyoshi Nakada | |
| Fixed misspellings reported at [Bug #16437], only in ruby and rubyspec. | |||
| 2019-12-17 | Squelch filter-branch warning and sleeping | Nobuyoshi Nakada | |
| 2019-12-16 | Use CDN instead of raw.githubusercontent.com | Kazuhiro NISHIYAMA | |
| 2019-12-16 | Fix open without close [ci skip] | Kazuhiro NISHIYAMA | |
| 2019-12-15 | tool/gen-mailmap.rb: odaira is removed as he is added in upstream | Yusuke Endoh | |
| https://github.com/ruby/ruby-commit-hook/commit/ddc83bea6fe6f4696e140b605db10ef0c922bba6 | |||
| 2019-12-15 | tool/gen-mailmap.rb: Added for generating git `.mailmap` file | Yusuke Endoh | |
| `.mailmap` can be used To show canonical names and email addresses. It is helpful for statistics of committers. | |||
| 2019-12-13 | readable function names for inline functions. | Koichi Sasada | |
| Now, C functions written by __builtin_cexpr!(code) and others are named as "__builtin_inline#{n}". However, it is difficult to know what the function is. This patch rename them into "__builtin_foo_#{lineno}" when cexpr! is in 'foo' method. | |||
| 2019-12-12 | implement make test-all TESTS=--gc-compact | 卜部昌平 | |
| 79eb5e1acac2339c6ec71db723298bdfcd92b233 implemented RUBY_TEST_GC_COMPACT=1 so why not make it also possible via the command line argument. | |||
| 2019-12-12 | support gc_compact_checker on parallel test. | Koichi Sasada | |
| 2019-12-11 | Make sure we don't push MOVED or NONE on the stack | Aaron Patterson | |
| 2019-12-12 | call GC.compact after each test. | Koichi Sasada | |
| RUBY_TEST_GC_COMPACT=1 enables GC.compact checker which calls GC.compact after each test. | |||
| 2019-12-11 | Try to use `set-output` | Kazuhiro NISHIYAMA | |
| because commit info are not necessary in env. | |||
| 2019-12-11 | Update tool/mk_builtin_binary.rb | Koichi Sasada | |
| Co-Authored-By: Sutou Kouhei <kou@cozmixng.org> Notes: Merged: https://github.com/ruby/ruby/pull/2735 | |||
| 2019-12-11 | support cross-compilation. | Koichi Sasada | |
| On cross-compilation, compiled binary can no be created because compiled binary should be created by same interpreter (on cross- compilation, host ruby is used to build ruby (BASERUBY)). So that cross-compilation system loads required scripts in text. It is same as miniruby. Notes: Merged: https://github.com/ruby/ruby/pull/2735 | |||
| 2019-12-11 | remove prelude.c | Koichi Sasada | |
| prelude.c is an automatically generated file by template/prelude.c.tmpl. However it does not contain any required functions. So remove it from dependency. Also miniprelude.c is included by mini_builtin.c and does not need to make miniprelude.o. Notes: Merged: https://github.com/ruby/ruby/pull/2735 | |||
| 2019-12-10 | Added the missing gemspec of racc | Hiroshi SHIBATA | |
| 2019-12-07 | Show failed commits only when exists | aycabta | |
