Project

General

Profile

Activity

From 06/30/2019 to 07/06/2019

07/06/2019

09:46 AM Revision 9d8855b6 (git): Added assertions for Unicode escaped CHAR scanner events
nobu (Nobuyoshi Nakada)
03:43 AM Revision f296c260 (git): Fix segfault when using method reference operator without using result
Fixes [Bug #15985] jeremyevans (Jeremy Evans)
03:31 AM Revision 688cef21 (git): Refactored width calculations
nobu (Nobuyoshi Nakada)
03:11 AM Revision 44aae5fe (git): Simplified
nobu (Nobuyoshi Nakada)

07/05/2019

10:20 PM Revision 833cfeb2 (git): * 2019-07-06
git[bot]
10:19 PM Revision 89e178c7 (git): Fix showing document of ClassName.method_name in IRB
In IRB, Time.new is split as "Time", ".", and "new". The receiver "Time"
is processed by #class method but it means t...
aycabta (aycabta .)
01:39 PM Revision d746a41e (git): Multiple codepoints are not allowed at single character literal
It has unintentionally passed since 2.5. nobu (Nobuyoshi Nakada)
10:01 AM Revision 0a2f598d (git): * 2019-07-05
git[bot]
10:00 AM Revision fae4489a (git): Fix a typo
znz (Kazuhiro NISHIYAMA)

07/04/2019

11:58 AM Revision 6c2b59f9 (git): Support Control- and Meta-
aycabta (aycabta .)
10:34 AM Revision d9f8b88b (git): Move a comment to proper place
aycabta (aycabta .)
10:29 AM Revision 6fa7ed45 (git): Check commented out line in inputrc correctly
aycabta (aycabta .)
09:54 AM Revision 265b9a0e (git): Parse key sequence more strictly
nobu (Nobuyoshi Nakada)
09:49 AM Revision 12e06d32 (git): Use lstrip instead of gsub which can match only once
nobu (Nobuyoshi Nakada)
09:47 AM Revision ee861e43 (git): Skip indented comment lines [Bug #15981]
nobu (Nobuyoshi Nakada)
09:12 AM Revision 0c3e6e86 (git): Suppress uninitialized instance variable warnings
nobu (Nobuyoshi Nakada)
06:58 AM Revision f19e048d (git): Do not dispatch a nil token in ripper
As a comment token includes the newline, so delayed newline token
just follows it should not be dispatched. [Bug #11...
nobu (Nobuyoshi Nakada)

07/03/2019

07:01 PM Revision 23c92b6f (git): Revert self-referencing finalizer warning [Feature #15974]
It has caused CI failures.
* d0cd0866d82a58933e5dccd073c753c0c2ad4eb5
Disable GC during rb_objspace_reachable_obj...
nobu (Nobuyoshi Nakada)
04:04 PM Revision 5d9e91af (git): * 2019-07-04
git[bot]
04:04 PM Revision c62aac10 (git): * expand tabs.
git[bot]
03:58 PM Revision d0cd0866 (git): Disable GC during rb_objspace_reachable_object_p
Try to fix CI breakage by [Feature #15974]. nobu (Nobuyoshi Nakada)
02:52 PM Revision 9f1d67a6 (git): Renamed to rb_objspace_reachable_object_p
nobu (Nobuyoshi Nakada)
02:37 PM Revision 7b9bb6f4 (git): Check code_block_open for whether code continues
aycabta (aycabta .)
01:45 PM Revision 6bd49b33 (git): Ensure that GC is disabled during compaction
Various things can cause GC to occur when compaction is running, for
example resizing the object identity map:
```
...
tenderlovemaking (Aaron Patterson)
10:29 AM Revision e44c9b11 (git): Try to avoid `not delagated` error
```
.../ruby/lib/delegate.rb:405:in `__getobj__': not delegated (ArgumentError)
```
https://rubyci.org/logs/rubyci.s3...
znz (Kazuhiro NISHIYAMA)
06:22 AM Revision 89cef1c5 (git): Version guard for [Feature #15974]
nobu (Nobuyoshi Nakada)
05:28 AM Revision dcedf0a0 (git): Fix order of tests
`check` includes `test-testframework`, `test-short` and its
preceeding tests, but `test-all` does not.
nobu (Nobuyoshi Nakada)
01:39 AM Revision 10cc6bc4 (git): Just disable inlining with local varaible for now
This partially reverts commit 712a66b0741605f5b2db670a292b9bb352f8a716.
The previous fix made CI strange like:
http:...
k0kubun (Takashi Kokubun)
01:23 AM Revision 07e9a1d9 (git): Debugging failures on x86_64-darwin17 of travis-ci
https://travis-ci.org/ruby/ruby/jobs/553346285 znz (Kazuhiro NISHIYAMA)

07/02/2019

07:26 PM Revision 9f262424 (git): * expand tabs.
git[bot]
07:22 PM Revision 796eeb63 (git): Fix up [Feature #15974]
* Fixed warning condition
* Fixed function signature
* Use ident hash
nobu (Nobuyoshi Nakada)
07:05 PM Revision 928260c2 (git): Warn in verbose mode on defining a finalizer that captures the object
[Feature #15974]
Closes: https://github.com/ruby/ruby/pull/2264
chrisseaton (Chris Seaton)
07:05 PM Revision efde19ce (git): Revert expansion of test-all
nobu (Nobuyoshi Nakada)
06:37 PM Revision 712a66b0 (git): Revert "Avoid corrupting VM stack on inlined setlocal"
This reverts commit ea30dd702512ff9df34fe8c71c825f8f901bf5b1.
because it fails when VM_CHECK_MODE=1.
ko1 (Koichi Sasada)
05:13 PM Revision c07165be (git): * expand tabs.
git[bot]
05:09 PM Revision bdddaa9f (git): Use rb_ident_hash_new instead of rb_hash_new_compare_by_id
The latter is same as the former, removed the duplicate function. nobu (Nobuyoshi Nakada)
03:34 PM Revision 0f283054 (git): Check that String#scrub block does not modify receiver
Similar to the check used for String#gsub. Can fix possible
segfault.
Fixes [Bug #15941]
jeremyevans (Jeremy Evans)
03:26 PM Revision 7582287e (git): Make String#-@ not freeze receiver if called on unfrozen subclass instance
rb_fstring behavior in this case is to freeze the receiver. I'm
not sure if that should be changed, so this takes th...
jeremyevans (Jeremy Evans)
03:22 PM Revision a4b5aaa9 (git): Remove Changelog section from doc/contributing.rdoc [ci skip]
Replace it with a section on commit message formatting. Also,
move the section on rebasing to the bottom, since that...
jeremyevans (Jeremy Evans)
03:19 PM Revision 40d31073 (git): * 2019-07-03
git[bot]
03:07 PM Revision ced64095 (git): Implement Array#minmax
Array#minmax was previous not implemented, so calling #minmax on
array was actually calling Enumerable#minmax. This ...
jeremyevans (Jeremy Evans)
02:50 PM Revision 649753b7 (git): Fix timezone issue for logger period's tests
This is a retry of 181b966e7553ac53d034266a7cdc18664d080814.
"Revert "Add a missing tests for Logger::Period module""...
mame (Yusuke Endoh)
02:38 PM Revision f1043090 (git): Revert "Add a missing tests for Logger::Period module"
This reverts commit 181b966e7553ac53d034266a7cdc18664d080814. ko1 (Koichi Sasada)
02:35 PM Revision ea30dd70 (git): Avoid corrupting VM stack on inlined setlocal
setlocal relies on cfp->ep, and frame-omitted method inlining introduced
in Ruby 2.7 kept it wrong.
This change migh...
k0kubun (Takashi Kokubun)
01:56 PM Revision 181b966e (git): Add a missing tests for Logger::Period module
Closes: https://github.com/ruby/ruby/pull/2266 davydov_anton (Anton Davydov)
01:11 PM Revision e9ea4941 (git): The behavior of statx(2) depends on the filesystem
birthtime may not be supported on some filesystems, and
NotImplementedError can be raised. [Bug #15972]
nobu (Nobuyoshi Nakada)
12:39 PM Revision e8a2521a (git): Adjust memory_status.rb under the tool directory.
hsbt (Hiroshi SHIBATA)
06:22 AM Revision 4d6c35d3 (git): Fix test-all substitution
nobu (Nobuyoshi Nakada)
06:02 AM Revision 6ffef8d4 (git): Clean up temporary expired cert file
nobu (Nobuyoshi Nakada)
06:02 AM Revision 92dcee39 (git): Clean up temporary directory for racc
nobu (Nobuyoshi Nakada)
02:46 AM Revision eb043c88 (git): ${} does not work with nmake.exe
nobu (Nobuyoshi Nakada)
01:40 AM Revision 0b858425 (git): Use GitHub ruby.git for make-snapshot
Previously @hsbt disabled https git clone from git.ruby-lang.org.
Using git.ruby-lang.org for non-commit purposes is...
k0kubun (Takashi Kokubun)
12:56 AM Revision 7f3bc352 (git): Adjust jit_support file path.
hsbt (Hiroshi SHIBATA)
12:49 AM Revision c6a131da (git): Removed test-almost from TEST_TARGETS
nobu (Nobuyoshi Nakada)
12:45 AM Revision 6e7e0bf2 (git): Now test-almost equals to test-all
nobu (Nobuyoshi Nakada)
12:44 AM Revision 580b7600 (git): Substitute autoconf variables by prereq.status
nobu (Nobuyoshi Nakada)
12:43 AM Revision 832b5094 (git): with_different_ofs.rb has been moved too
nobu (Nobuyoshi Nakada)
12:37 AM Revision 83fed5a4 (git): Adjust minitest file path
nobu (Nobuyoshi Nakada)
12:35 AM Revision 934a3a92 (git): Prefer master rather than trunk in doc/contributing.rdoc [ci skip]
znz (Kazuhiro NISHIYAMA)
12:35 AM Revision 73923bf5 (git): [DOC] Add LibreSSL [ci skip]
znz (Kazuhiro NISHIYAMA)
12:31 AM Revision b7fdeedb (git): Renamed to get rid of name clash
nobu (Nobuyoshi Nakada)
12:26 AM Revision 5aed6245 (git): Adjust minitest file path
nobu (Nobuyoshi Nakada)
12:23 AM Revision 4adfd522 (git): Removed needless exclude option related testframework.
They are moved under the tool directory now. hsbt (Hiroshi SHIBATA)
12:19 AM Revision f47254d2 (git): colors file has been moved from test to tool
nobu (Nobuyoshi Nakada)

07/01/2019

11:00 PM Revision 897b1e05 (git): Fixed the wrong path for COVERAGE.
ref. c3c0e3f5c9444c197779cb242de46dfffda79dec hsbt (Hiroshi SHIBATA)
10:59 PM Revision c68781e9 (git): Split test files for test-framework that are test-unit and minitest to tool direcotry.
hsbt (Hiroshi SHIBATA)
10:59 PM Revision c3c0e3f5 (git): Move to tool/lib from test/lib.
hsbt (Hiroshi SHIBATA)
10:33 PM Revision 142617c8 (git): Don't use native realpath(3) on Solaris
CI shows it does work on Solaris 11, but does not work on Solaris
10. However, until I figure out a good way to diff...
jeremyevans (Jeremy Evans)
07:39 PM Revision f53d7e4b (git): Raise TypeError if calling ENV.freeze
Previously, you could call ENV.freeze, but it would not have
the desired effect, as you could still modify ENV.
Fixe...
jeremyevans (Jeremy Evans)
07:14 PM Revision 93328b52 (git): * expand tabs.
git[bot]
06:46 PM Revision 11c311e3 (git): Use realpath(3) instead of custom realpath implementation if available
This approach is simpler than the previous approach which tries to
emulate realpath(3). It also performs much better...
jeremyevans (Jeremy Evans)
06:44 PM Revision 81fe82be (git): Enable native fiber coroutines on i386-openbsd
jeremyevans (Jeremy Evans)
06:35 PM Revision 005dadf3 (git): * 2019-07-02
git[bot]
06:34 PM Revision 776759e3 (git): Keyword token that follows EXPR_FNAME must be a method name
aycabta (aycabta .)
02:16 PM Revision 7ff2bfed (git): Alias "master" and "trunk"
nobu (Nobuyoshi Nakada)
02:04 PM Revision f2769ae2 (git): Default branch name to "master"
nobu (Nobuyoshi Nakada)
12:32 PM Revision acee9384 (git): Default ASMEXT
nobu (Nobuyoshi Nakada)
12:31 PM Revision f28450c1 (git): Substitue suffixes with dot
nobu (Nobuyoshi Nakada)
12:14 PM Revision 76851381 (git): Show "-" if indent level is negative
aycabta (aycabta .)
11:46 AM Revision 90c51ca3 (git): New indent must be non-negative number
nobu (Nobuyoshi Nakada)
11:05 AM Revision babaad10 (git): Use configured ASMEXT
nobu (Nobuyoshi Nakada)
08:09 AM Revision 7f4f40ab (git): bootstraptest/runner.rb (show_limit): defer messages unless verbose and a tty
nobu (Nobuyoshi Nakada)
07:25 AM Revision 70dcf5b3 (git): * expand tabs.
git[bot]
07:20 AM Revision 78ee2c24 (git): marshal.c: check instance variable count
* marshal.c (w_ivar_each): ensure that no instance variable was
removed while dumping other instance variables. [B...
nobu (Nobuyoshi Nakada)
07:18 AM Revision 0b1e2639 (git): Hoisted out w_ivar_each
nobu (Nobuyoshi Nakada)
06:02 AM Revision c9423b01 (git): marshal.c: check instance variable count
* marshal.c (w_obj_each): ensure that no instance variable was
added while dumping other instance variables. [Bug ...
nobu (Nobuyoshi Nakada)
05:00 AM Revision 77a07323 (git): * expand tabs.
git[bot]
04:56 AM Revision 99dc8859 (git): Fixed inadvertent ID creation in rb_iv_get
nobu (Nobuyoshi Nakada)
04:02 AM Revision 6982a904 (git): Assert obsolete method warnings in IPAddr
nobu (Nobuyoshi Nakada)
01:16 AM Revision fe03bbaf (git): bootstraptest/runner.rb (show_limit): show dots only when printing to a tty
nobu (Nobuyoshi Nakada)

06/30/2019

04:05 PM Revision dbe834ab (git): Prefer master rather than trunk in README [ci skip]
k0kubun (Takashi Kokubun)
03:48 PM Revision d3d903cb (git): [DOC] Fix typos [ci skip]
znz (Kazuhiro NISHIYAMA)
03:24 PM Revision 3d1536e6 (git): Build AppVeyor only on master
k0kubun (Takashi Kokubun)
03:22 PM Revision f13fb814 (git): Return the result of the block given to assert_warning/assert_no_warning
nobu (Nobuyoshi Nakada)
03:22 PM Revision 51b2b605 (git): Call deprecated method only inside assert_warning block
nobu (Nobuyoshi Nakada)
03:22 PM Revision 9cb58f16 (git): Suppress unused variable warning
nobu (Nobuyoshi Nakada)
03:15 PM Revision fc4abbfc (git): * 2019-07-01
git[bot]
03:14 PM Revision 35cf3e89 (git): The default branch is changed to master
and now Travis should run on master, instead of trunk.
(this is testing git push to master branch)
k0kubun (Takashi Kokubun)
12:23 PM Revision c5eb2434 (git): [DOC] update target_thread to TracePoint#enable
nobu (Nobuyoshi Nakada)
12:21 PM Revision 8640153e (git): Added test for require-return hook
nobu (Nobuyoshi Nakada)
12:20 PM Revision 1eca2f3c (git): TracePoint#__enable requires 3 arguments now
nobu (Nobuyoshi Nakada)
12:15 PM Revision 62e66b8e (git): Allow dtrace without pty, i.e., with miniruby
nobu (Nobuyoshi Nakada)
12:12 PM Revision b89f6ac8 (git): Check for the privileges by the current process groups
Group membership of login user is not activated until login after
adding to the group.
nobu (Nobuyoshi Nakada)
11:56 AM Revision 3b86ec22 (git): dtrace: check for the command availablity with sudo
nobu (Nobuyoshi Nakada)
11:19 AM Revision 126cf11d (git): Producer threads check is the primary condition
nobu (Nobuyoshi Nakada)
02:53 AM Revision 75129c62 (git): Suppress "statement not reached" warning
nobu (Nobuyoshi Nakada)
02:49 AM Revision cc680846 (git): Suppress method redefinition warnings
nobu (Nobuyoshi Nakada)
02:49 AM Revision 5f736d43 (git): Suppress "literal in condition" warnings
nobu (Nobuyoshi Nakada)
02:49 AM Revision 4a063546 (git): Suppress unused literal warnings in verbose mode
nobu (Nobuyoshi Nakada)
02:49 AM Revision 3620568d (git): Suppress void context warnings in verbose mode
nobu (Nobuyoshi Nakada)
02:45 AM Revision c400c0b4 (git): Skip instead of return
nobu (Nobuyoshi Nakada)
02:45 AM Revision b43d6e57 (git): Fixed non-working test
nobu (Nobuyoshi Nakada)
02:45 AM Revision 8fe35908 (git): Fixed ClosedQueueError by a timing issue
nobu (Nobuyoshi Nakada)
02:45 AM Revision 44eca1b2 (git): Reset the result between assertions
nobu (Nobuyoshi Nakada)
02:45 AM Revision ad382088 (git): Fixed an assertion
nobu (Nobuyoshi Nakada)
02:45 AM Revision 409b0ec4 (git): Suppress unused variable warnings
nobu (Nobuyoshi Nakada)
02:41 AM Revision 84837e6d (git): Wait for the helper thread to terminate
nobu (Nobuyoshi Nakada)
02:41 AM Revision 41012f2e (git): Add parentheses to suppress warnings
nobu (Nobuyoshi Nakada)
01:57 AM Revision 78a8888c (git): Hoisted out f_rest_marg
* parse.y (f_rest_marg): extract named and unnamed rest parameter
in parenthesized method arguments, and should not...
nobu (Nobuyoshi Nakada)
 

Also available in: Atom