aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Skip the entire Process.clock_getres spec on FreeBSDBenoit Daloze2019-04-281-18/+18
| | | | | * Clocks don't match the reported precision. * https://rubyci.org/logs/rubyci.s3.amazonaws.com/freebsd11zfs/ruby-trunk/log/20190428T093003Z.fail.html.gz
* Specify VM_CHECK_MODE explicitlyTakashi Kokubun2019-04-281-1/+1
| | | | | | In my understanding, `VM_CHECK_MODE` should be Integer and I'm not sure how `-DVM_CHECK_MODE` would behave. To make the matters simple, let me pass the mode explicitly.
* Ruby 2.3 is EOLTakashi Kokubun2019-04-281-2/+2
|
* Make the range to export as changelog optionalNobuyoshi Nakada2019-04-282-8/+8
| | | | | | | * `from` is defaulted to the beginning of the branch inclusively, otherwise the given revision is excluded as the previous. * `to` is defaulted to the head.
* Added VCS::SVN#branch_beginningNobuyoshi Nakada2019-04-282-2/+11
|
* Search the beginning revision more strictly a bitNobuyoshi Nakada2019-04-281-1/+1
|
* Makefiles need to be indented by tabsNobuyoshi Nakada2019-04-284-2/+7
|
* Removed `--reverse` optionNobuyoshi Nakada2019-04-281-1/+1
| | | | It is nonsense with `-n1` option.
* Update rubygems with latest upstream changesDavid Rodríguez2019-04-2828-228/+200
| | | | Closes: https://github.com/ruby/ruby/pull/2154
* Always mark the string returned by File.realpath as taintedJeremy Evans2019-04-282-2/+2
| | | | | | | | | | | | | | | | | This string can include elements that were not in either string passed to File.realpath, even if one of the strings is an absolute path, due to symlinks: ```ruby Dir.mkdir('b') unless File.directory?('b') File.write('b/a', '') unless File.file?('b/a') File.symlink('b', 'c') unless File.symlink?('c') path = File.realpath('c/a'.untaint, Dir.pwd.untaint) path # "/home/testr/ruby/b/a" path.tainted? # should be true, as 'b' comes from file system ``` [Bug #15803]
* Chomp a newline from the branch nameNobuyoshi Nakada2019-04-281-0/+1
|
* Shorten git revision name without "r" prefix in snapshotNobuyoshi Nakada2019-04-282-4/+21
|
* Some Solaris versions seem to only provide millisecond accuracy for ↵Benoit Daloze2019-04-271-2/+4
| | | | | | CLOCK_REALTIME * https://rubyci.org/logs/rubyci.s3.amazonaws.com/unstable11x/ruby-trunk/log/20190427T182404Z.fail.html.gz
* Skip clock_getres spec on BSDBenoit Daloze2019-04-271-3/+5
| | | | | * clock_getres() seems to be incorrect on BSD: https://rubyci.org/logs/rubyci.s3.amazonaws.com/freebsd11zfs/ruby-trunk/log/20190427T183003Z.fail.html.gz
* Try to more accurately reflect MRI's logic in specs for finding the home if ↵Benoit Daloze2019-04-271-1/+10
| | | | $HOME is unset
* Update to ruby/spec@14e6148Benoit Daloze2019-04-271-7/+10
|
* Isolate test_gc_compact on AppVeyor mswin as wellTakashi Kokubun2019-04-281-2/+2
| | | | | because it makes the CI unstable https://ci.appveyor.com/project/ruby/ruby/builds/24143365/job/yrx7b8ce2qg9wro2
* * remove trailing spaces.git2019-04-281-1/+1
|
* make sync-default-gems GEM=irbTakashi Kokubun2019-04-282-1/+2
| | | | | | | | | from https://github.com/ruby/irb/commit/89e9add06da3fd5f9ce91a2f5fa0b0190aa5d42f. This adds syntax highlight support for Module on inspect. In addition to that, I'm adding a trailing space in test_color.rb for testing ruby-commit-hook's auto-style.
* Update to ruby/spec@15c9619Benoit Daloze2019-04-27193-3330/+2969
|
* Update to ruby/mspec@18c5a7dBenoit Daloze2019-04-275-9/+77
|
* * 2019-04-28git2019-04-281-1/+1
|
* Reduce matz's work, let git do it insteadNobuyoshi Nakada2019-04-285-31/+10
|
* Improve documentation of Array.try_convertBenoit Daloze2019-04-271-2/+2
| | | | * Mostly to try the new git repository.
* Added ChangeLog marker for the beginning of 2.7.0Nobuyoshi Nakada2019-04-271-0/+8
|
* Support git-log format ChangeLogNobuyoshi Nakada2019-04-271-3/+6
|
* Separate format_changelogNobuyoshi Nakada2019-04-271-24/+34
| | | | | | VCS::GITSVN#format_changelog generates previous format, similar to svn-log, and VCS::GIT#format_changelog stores just git-log as-is for now.
* Override log format to parse for ChangeLogNobuyoshi Nakada2019-04-271-1/+1
|
* Include the beginning commit in ChangeLogNobuyoshi Nakada2019-04-271-1/+1
|
* Updated marked commits for ChangeLogNobuyoshi Nakada2019-04-272-2/+9
|
* Retry downloads more for unicode outageTakashi Kokubun2019-04-271-1/+1
| | | | like https://ci.appveyor.com/project/ruby/ruby/builds/24142523/job/v6aq4srj7c3hgt86
* make sync-default-gems GEM=irbTakashi Kokubun2019-04-275-5/+10
| | | | | Synced from https://github.com/ruby/irb/commit/5feb361ed80736efa5b2c2b629837ec2a5fc2cdb. This includes a support to colorize named Class instance on IRB inspect.
* Get rid of indirect sharingNobuyoshi Nakada2019-04-272-3/+17
| | | | | | | | | * string.c (str_duplicate): share the root shared string if the original string is already sharing, so that all shared strings refer the root shared string directly. indirect sharing can cause a dangling pointer. [Bug #15792]
* Isolate test_gc_compact on msys2 AppVeyorTakashi Kokubun2019-04-271-2/+2
| | | | | as it's unstable on the environment https://ci.appveyor.com/project/ruby/ruby/builds/24138134/job/i7e441u7se11w7ey
* Fix description of NODE_INKazuki Tsujimoto2019-04-271-1/+1
|
* Add class ref to `UnboundMethod#owner` docokuramasafumi2019-04-271-1/+1
| | | | | | | | It refers to `Method#receiver` in the doc, but there's no class reference in current doc. Some tools automatically make it a link so it's useful. Closes: https://github.com/ruby/ruby/pull/2156
* ia64: Don't clear register_stack_startJames Clarke2019-04-271-1/+0
| | | | | | | | r59829 stopped clearing stack_start and enabled the code for !FIBER_USE_NATIVE, but we need to do the same for register_stack_start on ia64, otherwise we end up with NULL in cont_save_machine_stack. Closes: https://github.com/ruby/ruby/pull/2155
* Isolate TestGCCompact from JIT testingTakashi Kokubun2019-04-272-0/+2
| | | | | | | | Wercker seems to randomly fail https://app.wercker.com/ruby/ruby/runs/mjit-test1/5cc3c1c423fcb70008db9b64?step=5cc3c46a03f4460007da0659 To help debugging, let me isolate the impact from GC.compact in the JIT testing on Wercker.
* Add `or nil` to call-seq of `Enumerator::ArithmeticSequence#begin`Kazuhiro NISHIYAMA2019-04-271-1/+1
| | | | | | | | | | | ``` % ruby -ve 'p (nil..).first' ruby 2.6.3p62 (2019-04-16 revision 67580) [x86_64-darwin18] nil % ruby -ve 'p (nil..).begin' ruby 2.6.3p62 (2019-04-16 revision 67580) [x86_64-darwin18] nil ```
* Update NEWS for pattern matching [ci skip]Kazuki Tsujimoto2019-04-271-1/+1
|
* NEWS: Note about $TERM requirement [ci skip]Takashi Kokubun2019-04-271-1/+1
|
* make sync-default-gems GEM=irbTakashi Kokubun2019-04-272-2/+2
| | | | Backport changes from ruby/irb.
* suppress warning in test/irbnaruse2019-04-272-1/+4
| | | | | | | | https://rubyci.org/logs/rubyci.s3.amazonaws.com/centos7/ruby-trunk/log/20190421T040003Z.fail.html.gz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e Re-committing https://github.com/ruby/ruby/commit/7f09b5e9da8f83f84c5b6ae7a644a562811fec73
* * 2019-04-27git2019-04-271-1/+1
|
* suppress redefinition warningsnaruse2019-04-271-1/+1
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67679 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Prefer block_given? to iterator?nobu2019-04-271-1/+1
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66866 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Fix rdoc in 52cfb17086Nobuyoshi Nakada2019-04-261-3/+3
|
* Revert "Class instance should be also colorable on IRB"Takashi Kokubun2019-04-262-2/+1
| | | | | | This reverts commit 6669c966d2744f21315047d1725ad4494d15b8ba. It seems to make tests fail... let me fix this later.
* Class instance should be also colorable on IRBTakashi Kokubun2019-04-262-1/+2
| | | | | | inspect. Change is made with: `$ make -C .ruby sync-default-gems GEM=irb`
* make sync-default-gems GEM=irbTakashi Kokubun2019-04-2611-34/+185
| | | | from https://github.com/ruby/irb/commit/e6739d8c66dc78562930adb0b96935c9b38acf74