Project

General

Profile

Activity

From 06/08/2017 to 06/14/2017

06/14/2017

10:05 PM Bug #13661 (Rejected): DateTime.parse parses strings with a month abbreviation after a word boundary as a valid date
When parsing a string like "[email protected]" it parses it into a DateTime i.e.:
~~~ ruby
require 'date'
DateTime....
jbcden (Jacob Chae)
09:58 PM Bug #13660: rb_str_hash_m discards bits from the hash
What is particularly puzzling on that AppVeyor log is both hash values at the Ruby level look the same, and have the ... Eregon (Benoit Daloze)
09:56 PM Bug #13660 (Closed): rb_str_hash_m discards bits from the hash
I believe rb_str_hash_m might discard some bits from the hash value in some situations.
It computes the hash as a ...
Eregon (Benoit Daloze)
02:02 PM Revision bacadbe9 (git): proc.c: infect inspect result
* proc.c (method_inspect): the result should be infected by the
object.
git-svn-id: svn+ssh://ci.ruby-lang.org/rub...
nobu (Nobuyoshi Nakada)
01:37 PM Misc #13659 (Third Party's Issue): Keeping track of officially supported versions by the ruby bindings in the core/stdlib
Hello ruby core-team and others,
Would it be possible to keep track of the versions that are officially supported
...
shevegen (Robert A. Heiler)
01:08 PM Revision 452f46b7 (git): test/ruby/test_method.rb: refined [ruby-core:81666] [Bug #13656]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
09:49 AM Bug #11033 (Closed): OpenSSL related threading issues in Ruby 2.1 and 2.2
Applied in changeset trunk|r59081.
----------
openssl: import v2.0.4
Import Ruby/OpenSSL 2.0.4. Only bug (and typo)...
Anonymous
04:57 AM Bug #11033: OpenSSL related threading issues in Ruby 2.1 and 2.2
[Bug #8386] is unrelated to this. The X509_load_cert_crl_file() function called
from OpenSSL::X509::Store#add_file i...
rhenium (Kazuki Yamaguchi)
01:23 AM Bug #11033: OpenSSL related threading issues in Ruby 2.1 and 2.2
Also seeing this issue crop up in AppVeyor - specifically under Ruby 2.4 testing. We haven't seen this in previous R... Iristyle (Ethan Brown)
09:49 AM Revision 9eb92007 (git): openssl: import v2.0.4
Import Ruby/OpenSSL 2.0.4. Only bug (and typo) fixes. The full commit
history since v2.0.3 (imported at r57482) can b...
rhenium (Kazuki Yamaguchi)
06:04 AM Bug #13656 (Closed): Method#super_method returns incorrect result dependent on unrelated module
Applied in changeset trunk|r59080.
----------
proc.c: skip prepended modules
* proc.c (method_super_method): skip p...
nobu (Nobuyoshi Nakada)
06:03 AM Revision dbf67bf0 (git): proc.c: skip prepended modules
* proc.c (method_super_method): skip prepended modules and
continue from the super class of the original class.
[...
nobu (Nobuyoshi Nakada)
05:23 AM Bug #13655: external encoding named "-" (doc issue or…?)
I think it a doc issue. nobu (Nobuyoshi Nakada)
05:10 AM Revision e6d9e4c8 (git): compile.c: dump and error before allocation
* compile.c (iseq_set_sequence): separate instruction dump and
error, before allocation of sequence.
git-svn-id: s...
nobu (Nobuyoshi Nakada)
04:27 AM Bug #13658 (Closed): Compile error with Oracle Solaris Studio (Oracle Developer Studio) 12.4 in compile.c line 1622 (definition of BADINSN_ERROR)
Applied in changeset trunk|r59078.
----------
simply call xfree().
* compile.c (BADINSN_ERROR): mixing (void) and (...
ko1 (Koichi Sasada)
04:15 AM Bug #13658 (Closed): Compile error with Oracle Solaris Studio (Oracle Developer Studio) 12.4 in compile.c line 1622 (definition of BADINSN_ERROR)
r59074 付近以降、Solaris 10 上の Oracle Solaris Studio 12.4 にて、
以下のエラーにより compile.c のコンパイルに失敗します。
~~~
"compile.c", line...
ngoto (Naohisa Goto)
04:27 AM Revision 70d6d8ac (git): simply call xfree().
* compile.c (BADINSN_ERROR): mixing (void) and (int) will fail solaris
compiler. [ruby-core:81668], [Bug #13658]
...
ko1 (Koichi Sasada)
03:08 AM Feature #13551: Add a method to alias class methods
I think Robert is exactly right.
I've hoped for such a method on several occasions myself, but highly dislike clutte...
JustJosh (Joshua Stowers)
02:51 AM Feature #13618: [PATCH] auto fiber schedule for rb_wait_for_single_fd and rb_waitpid
[email protected] wrote:
> Does Ruby `File.read` and `File.stat` (and others) release the GVL? Otherwise, th...
normalperson (Eric Wong)
02:13 AM Feature #13618: [PATCH] auto fiber schedule for rb_wait_for_single_fd and rb_waitpid
I appreciate your detailed response it was interesting.
Does Ruby `File.read` and `File.stat` (and others) release...
ioquatix (Samuel Williams)
02:51 AM Feature #13657 (Rejected): Simplify usage of Enumerable#reject
That's grep_v.
```ruby
[1, 2, 3, 4].grep_v(3) # => [1, 2, 4]
```
shyouhei (Shyouhei Urabe)
02:40 AM Feature #13657 (Rejected): Simplify usage of Enumerable#reject
The reject method is more complicated than it has to be when removing only a specific value.
It would be convenient ...
JustJosh (Joshua Stowers)
02:26 AM Revision 79029ea7 (git): * 2017-06-14
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
02:26 AM Revision d7e7f051 (git): remove OPT_CALL_CFUNC_WITHOUT_FRAME.
* vm_core.h (OPT_CALL_CFUNC_WITHOUT_FRAME): removed because nobody use it.
This optimization tries to call C-method...
ko1 (Koichi Sasada)
02:00 AM Feature #13626: Add String#byteslice!
> Fwiw, I'm also not convinced String#<< behavior about changing
> write_buffer to Encoding::UTF-8 in your above exa...
ioquatix (Samuel Williams)

06/13/2017

10:11 PM Feature #12589: VM performance improvement proposal
[email protected] wrote:
> normalperson (Eric Wong) wrote:
> > None of these are super important; and I can eve...
normalperson (Eric Wong)
03:04 PM Feature #12589: VM performance improvement proposal
normalperson (Eric Wong) wrote:
> Eric Wong <[email protected]> wrote:
>
> Ah, I noticed you've removed "re...
vmakarov (Vladimir Makarov)
04:40 PM Bug #13656 (Closed): Method#super_method returns incorrect result dependent on unrelated module
~~~ruby
module Calculations
def pluck
puts "calculations"
end
end
module Calculations2
def pluck
...
ccutrer (Cody Cutrer)
04:06 PM Bug #13655 (Closed): external encoding named "-" (doc issue or…?)
IO.new's document explicitly states that it accepts "-" as external encoding:
https://github.com/ruby/ruby/blob/d0...
shyouhei (Shyouhei Urabe)
01:54 PM Feature #13653: Bundled zlib helper
I think `--enable-bundled-zlib` should suppress looking for external libraries and headers, as well as fiddle and psych. nobu (Nobuyoshi Nakada)
12:01 PM Feature #13653 (Closed): Bundled zlib helper
I created experimentally implementation for zlib-binding helper of bundled build.
* https://github.com/ruby/ruby/...
hsbt (Hiroshi SHIBATA)
01:48 PM Bug #13648 (Closed): [PATCH] Nested map of Enumerator::Lazy with packed values gives wrong result
nobu (Nobuyoshi Nakada)
01:39 PM Bug #10314: Default argument lookup fails in Ruby 2.2 for circular shadowed variable names
olivierlacan (Olivier Lacan) wrote:
> Also, wasn't `def run(foo = self.foo)` a viable alternative to `def run(foo = ...
nobu (Nobuyoshi Nakada)
04:06 AM Bug #10314: Default argument lookup fails in Ruby 2.2 for circular shadowed variable names
nobu (Nobuyoshi Nakada) wrote:
> I'm in favor of that error.
Do you still want to implement this error?
Also,...
olivierlacan (Olivier Lacan)
01:17 PM Bug #13654 (Closed): irb save-history extension is not concurrency-safe

## Issue
If 2 simultaneous irb sessions are running with save-history enabled, the history will be overwritten in ...
charles.cooke (Charles Cooke)
06:54 AM Bug #13652: Ruby 2.3.4 does not catch Argument error when comparing DateTime with String
@derekzwy it is fixed in Ruby2.4.1 and active_support 5.1.1
it looks like the bug does happen in your active_suppo...
Hanmac (Hans Mackowiak)
02:59 AM Bug #13652 (Rejected): Ruby 2.3.4 does not catch Argument error when comparing DateTime with String
Ruby 2.3.4 does not catch Argument error when comparing DateTime with String, while Ruby 2.1.5 catches it and return ... derekzwy (Wenyuan Zhang)
03:20 AM Revision be1d07ca (git): * compile.c (dump_disasm_list_with_cursor): replace with
dump_disasm_list_with_cursor_dest.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59075 b2dd03c8-39d4-4d8f-98ff-8...
nobu (Nobuyoshi Nakada)
02:52 AM Revision eb0777e8 (git): fix to free unallocated memory.
* compile.c (iseq_set_sequence): initialize with NULL for line_info_table
and generated_iseq and check NULL at BADI...
ko1 (Koichi Sasada)
02:22 AM Feature #13518: Indented multiline comments
nobu (Nobuyoshi Nakada) wrote:
> How about that matching indentation of `=begin` and `=end`?
>
> ```ruby
> =be...
tscheingeld (Terry Scheingeld)
01:31 AM Revision 121550b0 (git): compile.c: refine error message
* compile.c (insn_set_sc_state): dump the whole instructions and
mark the destination when label state mismatch.
g...
nobu (Nobuyoshi Nakada)
01:04 AM Revision 81073cc4 (git): * 2017-06-13
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59072 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
01:04 AM Revision a784132d (git): compile.c: refine error messages
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
12:27 AM Feature #12533: Refinements: allow modules inclusion, in which the module can call internal methods which it defines.
Sorry for slight off-topic from me here - I wonder if refinements will be refined when ruby 3.x comes out ... :) shevegen (Robert A. Heiler)
12:24 AM Feature #12399: Restricted, safe version of `Kernel#eval`
I am neutral on this; I can see that it can be useful. Not sure if matz wants to have it though,
I guess there is a ...
shevegen (Robert A. Heiler)

06/12/2017

09:51 PM Feature #12589: VM performance improvement proposal
Eric Wong <[email protected]> wrote:
> [email protected] wrote:
> > I should remove -Werror=incompatible-poi...
normalperson (Eric Wong)
02:24 PM Feature #13563: Implement Hash#choice method.
Sorry,I'm so embarrassed.
https://github.com/baban/ruby/commit/b3b7f5f701e9bfbbc946d27d3397adc1c99125f6
babanba-n (matzbara masanao)
02:13 PM Bug #13635: ruby and linux-pf or linux-zen kernels
I have similar issue to compile ruby-2.3.3 on Arch Linux lts.
For the OpenSSL issue, I used the solution mentioned...
allencch (Allen Choong)
11:09 AM Revision a100bf32 (git): array.c: [DOC] Make it clear that #<< modifies receiver
This patch is sent from @selmertsx (morioka shuhei).
[fix GH-1646]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trun...
k0kubun (Takashi Kokubun)
07:58 AM Revision 3b405a89 (git): add a comment for rb_thread_mark()
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59069 b2dd03c8-39d4-4d8f-98ff-823fe69b080e ko1 (Koichi Sasada)
07:49 AM Revision f06daf16 (git): remove rb_blocking_region_buffer::oldubf.
* thread.c (rb_blocking_region_buffer): remove oldubf because ubf should be
NULL just before ubf setting.
* thread...
ko1 (Koichi Sasada)
06:31 AM Revision 1542ab67 (git): unused functions
* thread_win32.c: native_cond_signal, native_cond_wait,
native_cond_initialize, native_cond_destroy are not used no...
nobu (Nobuyoshi Nakada)
06:06 AM Bug #13651 (Closed): backport r55324
バックポート管理用チケットです。 usa (Usaku NAKAMURA)
04:52 AM Revision 6c3f1461 (git): remove ruby_kill() introduced for [Bug #7951].
* thread.c (rbuy_kill): removed. This function is used
with SIGSEGV, SIGBUS, SIGKILL, SIGILL, SIGFPE and SIGSTOP
...
ko1 (Koichi Sasada)
04:35 AM Revision a57d295e (git): iseq.c: preserve encoding
* iseq.c (iseqw_inspect): preserve path encoding in the result.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59...
nobu (Nobuyoshi Nakada)
04:35 AM Revision 581cd6cf (git): gc.c: duplicate rb_iseq_path by RSTRING_PTR
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59064 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
02:20 AM Bug #13605 (Closed): GC bug calling `ObjectSpace.each_object`
Applied in changeset trunk|r59063.
----------
* proc.c (get_local_variable_ptr): return found env ptr. Returned env
...
ko1 (Koichi Sasada)
02:20 AM Revision fccbc2d2 (git): * proc.c (get_local_variable_ptr): return found env ptr. Returned env
will be used by write barrier at `bind_local_variable_set()'.
[Bug #13605]
* test/ruby/test_proc.rb: add a test fo...
ko1 (Koichi Sasada)
12:18 AM Revision b25237fb (git): * 2017-06-12
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59062 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
12:18 AM Revision ff5e3b98 (git): win32.c: rb_dir_getwd_ospath
* win32/win32.c (rb_dir_getwd_ospath): Windows implementation
moved from dir.c. get rid of freeing malloced memory...
nobu (Nobuyoshi Nakada)

06/11/2017

04:23 PM Bug #13605: GC bug calling `ObjectSpace.each_object`
It seems to be for lack of write-barrier. (as _ko1 suggested at [https://twitter.com/_ko1/status/871892183464370176](... wanabe (_ wanabe)
11:21 AM Revision 5aff6f29 (git): expand ruby_sourcefile
* compile.c: expand ruby_sourcefile not to evaluate twice in
RSTRING_PTR.
git-svn-id: svn+ssh://ci.ruby-lang.org/r...
nobu (Nobuyoshi Nakada)
05:36 AM Revision 1ea17be1 (git): * 2017-06-11
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
05:36 AM Revision 751cbd7d (git): configure.in: link the DWARF debug information
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59058 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
03:43 AM Bug #13644: Windows - Setting Time.now
nobu,
Attached is the patch I'm using in my MinGW build system for the test in question. It passes, and my [test-...
MSP-Greg (Greg L)

06/10/2017

03:32 PM Feature #13563: Implement Hash#choice method.
babanba-n (matzbara masanao) wrote:
> And, I fix to Hash#pick.
>
> https://github.com/baban/ruby/commit/fa9d1d629...
Hanmac (Hans Mackowiak)
02:26 PM Feature #13563: Implement Hash#choice method.
And, I fix to Hash#pick.
https://github.com/baban/ruby/commit/fa9d1d6291e4507c5fdd997c269cd1cd68003899
babanba-n (matzbara masanao)
02:09 PM Bug #13644: Windows - Setting Time.now
Nobuyoshi,
> It's defined in FakeTime module which is prepended to Time.
Thank you for being so polite and taki...
MSP-Greg (Greg L)
10:35 AM Bug #13644: Windows - Setting Time.now
It's defined in `FakeTime` module which is prepended to `Time`.
I haven't seen that failure on mingw.
nobu (Nobuyoshi Nakada)
10:26 AM Revision a53f6d71 (git): * 2017-06-10
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59057 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
10:26 AM Revision 51982c81 (git): enumerator.c: fix nested maps
* enumerator.c (lazy_map_proc, lazy_grep_iter_proc): marks values
returned by blocks are not packed in the case of ...
nobu (Nobuyoshi Nakada)
10:25 AM Bug #13648: [PATCH] Nested map of Enumerator::Lazy with packed values gives wrong result
Thank you, I commit your patch without GCC extension. nobu (Nobuyoshi Nakada)
03:53 AM Feature #9001: Please package better standard library
AFAIK nokogiri depends external libraries which is not a good property to introduce.
In the first place do we want...
shyouhei (Shyouhei Urabe)

06/09/2017

10:32 PM Bug #13644: Windows - Setting Time.now
Submitted [PR #1645](https://github.com/ruby/ruby/pull/1645)
Re tests, this PR changes a file used in test-all, wh...
MSP-Greg (Greg L)
03:00 AM Bug #13644 (Closed): Windows - Setting Time.now
While reviewing a MinGW build `test-all` failure in [TestLogDevice#test_shifting_midnight_exist_file](https://github.... MSP-Greg (Greg L)
08:41 PM Feature #13618: [PATCH] auto fiber schedule for rb_wait_for_single_fd and rb_waitpid
[email protected] wrote:
> To a certain extent, things discussed here are already implemented in
>
> http...
normalperson (Eric Wong)
08:15 AM Feature #13618: [PATCH] auto fiber schedule for rb_wait_for_single_fd and rb_waitpid
To a certain extent, things discussed here are already implemented in
https://github.com/socketry/async
and
...
ioquatix (Samuel Williams)
06:07 PM Bug #13650 (Closed): Sporadic Ruby Crashing
We're experiencing a crash in our Ruby application that is extremely hard to reproduce on-demand, but our application... macuser9103812 (Jessica Johnson)
05:35 PM Bug #13649 (Closed): Net::IMAP doesn't support response from a Microsoft Exchange server (which is not compliant with RFC standards)
Hello,
This day I wanted to use a mailbox hosted on a Microsoft Exchange server and it was not working.
I found t...
keysen (Jérémy Carlier)
04:41 PM Feature #9001: Please package better standard library
windwiny (wind winy) wrote:
> some people agree ?
I support _adding_ Nokogiri to the standard library.
rklemme (Robert Klemme)
04:33 PM Bug #13280: net/ftp: Putbinaryfile (on Windows) requires blocksize equal to file size
Just now, I returned to my client's site. I couldn't reproduce the problematic reported behavior, either. (And the Wi... MarkDBlackwell (Mark D Blackwell)
04:11 PM Bug #13648 (Closed): [PATCH] Nested map of Enumerator::Lazy with packed values gives wrong result
This test case ends up with the following result.
~~~ ruby
class Step
include Enumerable
attr_reader :curre...
akihikodaki (Akihiko Odaki)
02:42 PM Revision e8c62546 (git): thread_pthread.c: workaround for valgrind on Mac
* thread.c: revert r59053.
* thread_pthread.c (rb_thread_create_timer_thread): needs more
stack space for valgrind...
nobu (Nobuyoshi Nakada)
02:42 PM Revision 1b6e7a3d (git): signal.c: do not disable handlers to dump core
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59054 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
01:58 PM Revision 9abe121c (git): thread.c: workaround for valgrind on Mac OS X
Without this hack, pthread_join() in rb_thread_stop_timer_thread()
segfaults.
ProductName: Mac OS X
ProductVersio...
nobu (Nobuyoshi Nakada)
01:15 PM Bug #13647 (Closed): Some weird behaviour with keyword arguments
I was just playing around and found this weird behaviour, which seems to be in at least Ruby 2.3.0 and Ruby 2.4.0:
...
Arepo (Sasha Cooper)
01:02 PM Revision a4d8a6e1 (git): signal.c: no sigsegv handler with valgrind
* signal.c: disable handling signals to dump core, if installing
unreserved signals failed, not valgrind to hang on...
nobu (Nobuyoshi Nakada)
10:13 AM Feature #13645: Syntactic sugar for indexing when using the safe navigation operator
Duplicate of https://bugs.ruby-lang.org/issues/11813 sawa (Tsuyoshi Sawada)
09:52 AM Feature #13645: Syntactic sugar for indexing when using the safe navigation operator
Is this valid syntax? I ask specifically because of the '.' character there. I am not
a big fan of the & anyway thou...
shevegen (Robert A. Heiler)
07:37 AM Feature #13645 (Open): Syntactic sugar for indexing when using the safe navigation operator
# Proposal
While it works and makes sense, this is a bit cumbersome:
```ruby
hash&.[](:key)
```
Ideally, w...
ndn (Nikola Nenkov)
09:58 AM Bug #13643 (Rejected): Cannot compile ruby 2.2.5, 2.3.3, 2.3.4 on debian stretch
The openssl extension of Ruby < 2.4 is not compatible with OpenSSL 1.1.
You can, however, install the 'libssl1.0-d...
rhenium (Kazuki Yamaguchi)
06:25 AM Bug #13643: Cannot compile ruby 2.2.5, 2.3.3, 2.3.4 on debian stretch
@andrevidic: i think there are some dependecies missing on your system to build ruby.
you can try `apt-get build-dep...
Hanmac (Hans Mackowiak)
04:01 AM Bug #13643: Cannot compile ruby 2.2.5, 2.3.3, 2.3.4 on debian stretch
Full package list: https://gist.github.com/drej2k/d0362e8635e09d6ddbf9fca604c12c72 andrevidic (Andre Vidic)
02:11 AM Bug #13643 (Rejected): Cannot compile ruby 2.2.5, 2.3.3, 2.3.4 on debian stretch
Linux debian 4.9.0-3-amd64 #1 SMP Debian 4.9.25-1 (2017-05-02) x86_64 GNU/Linux
## Summary:
1. v2.2.5, v2.3.3 fai...
andrevidic (Andre Vidic)
08:45 AM Bug #13646 (Third Party's Issue): Segmentation fault with postgresql_adapter in Rails
Sometimes will running a test with guard and spring, test crash. I get a segfault on [postgresql_adapter](https://git... Benoit_Tigeot (Benoit Tigeot)
08:30 AM Revision 9f4db3bc (git): signal.c: warn at unresserved signals
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59051 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
08:21 AM Feature #11484: add output offset for readpartial/read_nonblock/etc
This is a great idea, but I propose the argument is called simply `offset:` ioquatix (Samuel Williams)
07:41 AM Feature #13637: [PATCH] tool/runruby.rb: test with smallest possible machine stack
[email protected] wrote:
> I missed this ticket.
> I wonder there are no failures on CI.

That is fortunate to hear ...
normalperson (Eric Wong)
04:35 AM Feature #13637: [PATCH] tool/runruby.rb: test with smallest possible machine stack
I missed this ticket.
I wonder there are no failures on CI.
Do you mean that we shouldn't use recursive call whic...
ko1 (Koichi Sasada)
03:21 AM Bug #13040 (Rejected): syslog/logger uses "require 'logger'" which is interpreted as circular dependency
hsbt (Hiroshi SHIBATA)
03:20 AM Revision 39fbb2ea (git): Update bundled gems to latest versions.
* did_you_mean 1.1.2
* minitest 5.10.2
* xmlrpc 0.3.0
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59050 b2...
hsbt (Hiroshi SHIBATA)
01:31 AM Revision cb8ce41b (git): Fix typo.
Patch by: Sarah Duve
Signed-off-by: Akira Matsuda <[email protected]>
[Fix GH-1643]
[ci skip]
git-svn-id: svn+ssh://ci....
matsuda (Akira Matsuda)

06/08/2017

08:58 PM Feature #13637 (Closed): [PATCH] tool/runruby.rb: test with smallest possible machine stack
Applied in changeset trunk|r59047.
----------
tool/runruby.rb: test with smallest possible machine stack
Lets ensur...
Anonymous
08:58 PM Revision 984000ef (git): * 2017-06-09
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59048 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
08:58 PM Revision c4e2cf46 (git): tool/runruby.rb: test with smallest possible machine stack
Lets ensure none of our C functions use too much stack space and
fix all excessive stack usage before releasing the n...
Eric Wong
05:09 PM Bug #13642 (Closed): MinGW - Bug::Win32::TestDln#test_check_imported & misc
First of all, this is all windows specific. My current MinGW build system is now showing five failures in [`test-all... MSP-Greg (Greg L)
03:46 PM Bug #13040: syslog/logger uses "require 'logger'" which is interpreted as circular dependency
Ok, I was able to reproduce this now.
1. create a new Rails Project
2. create an initializer under configs/initia...
lemsx1 (Luis Mondesi)
02:03 PM Bug #12203 (Third Party's Issue): dumper.c static int yaml_emitter_dump_scalar two variables have the same value
Please report it to the upstream, https://github.com/ruby/psych. nobu (Nobuyoshi Nakada)
01:37 PM Bug #13640 (Rejected): Crash report log
Seems an already fixed bug in 2.4.1. nobu (Nobuyoshi Nakada)
01:26 PM Bug #13640 (Rejected): Crash report log
```
ruby 2.4.0p0 (2016-12-24 revision 57164) [x86_64-darwin15]
-- Crash Report log information ------------------...
tomascharad (Tomás Charad)
01:37 PM Bug #13641 (Rejected): Crash report log
Seems an already fixed bug in 2.4.1. nobu (Nobuyoshi Nakada)
01:26 PM Bug #13641 (Rejected): Crash report log
tomascharad (Tomás Charad)
07:41 AM Revision a2f1c07f (git): signal.c: relax installation failure
* signal.c (install_sighandler): ignore failure at unreserved
signals. e.g., SIGUSR2 fails under valgrind.
* sign...
nobu (Nobuyoshi Nakada)
05:22 AM Revision 269b7955 (git): vm_block_handler_verify() should not return any value.
* vm_core.h (vm_block_handler_verify): this function only checks
the given block handler with VM_ASSERT(). No need ...
ko1 (Koichi Sasada)
05:22 AM Feature #13639 (Open): Add "RTMIN" and "RTMAX" to Signal.list
I propose to add the key "RTMIN" and "RTMAX" to Signal.list
Currently, We can't know signal number for realtime-si...
ksss (Yuki Kurihara)
04:13 AM Revision 3553a303 (git): * remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59044 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
04:13 AM Revision 7d8a415b (git): check break target correctly.
* compile.c (iseq_compile_each0): save target child_iseq in the catch-table
for break. This iseq is not for continu...
ko1 (Koichi Sasada)
04:06 AM Revision 0318de23 (git): use NULL instead of 0.
* compile.c: use NULL instead of 0 for ADD_CATCH_ENTRY()
to specify don't pass iseq.
git-svn-id: svn+ssh://ci.rub...
ko1 (Koichi Sasada)
03:53 AM Bug #13624: MinGW - TestIO#test_copy_stream_no_busy_wait - new failure
Sorry for the delay. Ran the test with and without -j, several hundred runs, no failures.
Please close.
Thank ...
MSP-Greg (Greg L)
02:07 AM Revision 238a6246 (git): ruby.c: script name in UTF-8
* ruby.c (process_options): keep script name in UTF-8 if UTF8_PATH
to get rid of loss by conversion.
git-svn-id: s...
nobu (Nobuyoshi Nakada)
01:58 AM Revision aac0b43e (git): file.c: realpath in OS path encoding
* dir.c (rb_dir_getwd_ospath): return cwd path in the OS path
encoding.
* file.c (rb_realpath_internal): work in t...
nobu (Nobuyoshi Nakada)
01:58 AM Revision 6502c038 (git): appveyor.yml: show encodings [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59039 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
01:54 AM Bug #13324 (Closed): IRB Segmentation Fault from eval infinite loop
[email protected] (Sean Rodman) wrote:
> The issue is not the stack overflow but the segmentation fault I descri...
ko1 (Koichi Sasada)
01:19 AM Revision 4ea23fb7 (git): appveyor.yml: enable exam on AppVeyor
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59038 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
 

Also available in: Atom