Project

General

Profile

Activity

From 04/02/2018 to 04/08/2018

04/08/2018

07:39 PM Revision 784fdba3 (git): * 2018-04-09
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63122 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
07:39 PM Revision d33ddd63 (git): parse.y: fix docs for Ripper.dedent_string
* parse.y: [DOC] fix return type in call-seq of Ripper.dedent_string,
clarify the method's behavior.
git-svn-id: s...
stomar (Marcus Stollsteimer)
01:46 PM Bug #14668: Ruby2.6.0-preview1とtrunkでnmatrixがコンパイルできない
r61843 以降、ALLOCA_N マクロの中で(利用可能なときには) RUBY_ALIGNOF マクロを利用するようになったことがきっかけのようです。
ただこれはきっかけというだけで、どちらかというと RUBY_ALIGNO...
wanabe (_ wanabe)
11:17 AM Revision 610dc339 (git): compile.c: disable debug prints on sparc
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63120 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
11:12 AM Revision fda1837e (git): compile.c: fix an exception argument
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63119 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
11:11 AM Feature #14669: Regexp does not expose the amount of capture groups.
This information is available for named captures via Regexp#names and Regexp#named_captures, but it doesn't seem avai... Eregon (Benoit Daloze)
07:26 AM Feature #14669: Regexp does not expose the amount of capture groups.
Can you give a few examples of how this may be used, and explain what's the purpose of getting the number of capture ... duerst (Martin Dürst)
04:26 AM Feature #14669: Regexp does not expose the amount of capture groups.
Should be added; may have just been forgotten if Onigmo already
supports that.
shevegen (Robert A. Heiler)
08:28 AM Revision a72a50b1 (git): compile.c: suppress warnings
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63118 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
08:20 AM Revision 0f8368ca (git): compile.c: align ibf_object_header
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63117 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
07:42 AM Revision 89a6a4ec (git): compile.c: debug prints in ibf_load_object
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63116 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
07:31 AM Revision 6ce79866 (git): [DOC] `*` in glob matches `\n` too [ci skip]
```
File.fnmatch("a*b", "a\nb") # => true
/\Aa.*b\z/x.match?("a\nb") # => false
/\Aa.*b\z/mx.match?("a\nb") # => tru...
znz (Kazuhiro NISHIYAMA)
05:22 AM Revision a38339d8 (git): * 2018-04-08
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
05:22 AM Revision b6185e17 (git): compile.c: align IBF dumped data
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
01:39 AM Bug #14670 (Closed): Objectで定義したmethod_missingでsuperが使えない
```ruby
class Object
def method_missing(name, *args, &block)
super
end
end
Object.new.foo
```
を実行...
keiju (Keiju Ishitsuka)

04/07/2018

11:15 PM Bug #14653 (Closed): Bootsnap gets segmentation fault
yahonda (Yasuo Honda) wrote:
> Thanks for the update. This issue does not reproduce anymore using ruby 2.6.0dev (201...
wanabe (_ wanabe)
12:18 AM Bug #14653: Bootsnap gets segmentation fault
Thanks for the update. This issue does not reproduce anymore using ruby 2.6.0dev (2018-04-07 trunk 63108) [x86_64-lin... yahonda (Yasuo Honda)
10:52 PM Feature #14669 (Open): Regexp does not expose the amount of capture groups.
For a project we needed to know how many capture groups a Regex exposes (before actually matching it). The Onigmo reg... xfbs (Patrick Elsen)
01:03 PM Revision 23228b6e (git): Remove outdated example from Numeric documentation
Since 2.5, Numeric instances can be cloned and duplicated.
[Fix GH-1850]
From: Miguel Landaeta <[email protected]>
...
nobu (Nobuyoshi Nakada)
09:44 AM Revision ba267bce (git): compile.c: refine debug prints
* compile.c (ibf_load_iseq_complete): use alternate hexadecimal
form for offset.
git-svn-id: svn+ssh://ci.ruby-lan...
nobu (Nobuyoshi Nakada)
03:48 AM Revision 2de68923 (git): test/ruby/test_iseq.rb: hexdump to diff
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63110 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
03:48 AM Revision eaf5e34b (git): Use assert_include
For better failure message:
- by assert_operator: Expected "X" to be include? "Y"
- by assert_include: Expected "X" ...
nobu (Nobuyoshi Nakada)
01:09 AM Feature #12839: CSV - Give not nil but empty strings for empty fields
Thank you very much for fixing #11126.
But I think that the status of my ticket (#12839) should be not Closed but ...
5.5 (5 5)

04/06/2018

11:52 PM Bug #14667: Segmentation fault in Ruby during iOS automation
My automation tests are trying to install the iOS application-
ruby ~/path/to/install/script/install_ipa.rb <devic...
sankalp89 (Sankalp Anand)
12:58 PM Bug #14667 (Feedback): Segmentation fault in Ruby during iOS automation
```
-- C level backtrace information -------------------------------------------
0 ruby ...
nobu (Nobuyoshi Nakada)
07:21 AM Bug #14667: Segmentation fault in Ruby during iOS automation
This is the crash dump from /Library/Logs/CrashReporter/
~~~
Process: ruby [59453]
Path: ...
sankalp89 (Sankalp Anand)
12:22 AM Bug #14667 (Closed): Segmentation fault in Ruby during iOS automation
Hello,
I'm using Calabash for iOS automation. My tests are crashing the ruby interpreter. Could you please help in...
sankalp89 (Sankalp Anand)
08:50 PM Revision 5506e9b1 (git): tool/ruby_vm/scripts/insns2vm.rb: fix typo in r62064
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63108 b2dd03c8-39d4-4d8f-98ff-823fe69b080e stomar (Marcus Stollsteimer)
08:04 PM Bug #14653: Bootsnap gets segmentation fault
I guess it is fixed at [Bug #14553] r63040.
(And it also needs [Bug #14660] r63103 to pass all tests, but although i...
wanabe (_ wanabe)
03:06 PM Revision edfd0632 (git): * 2018-04-07
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63107 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
03:06 PM Revision f7faedc7 (git): Use assert_operator instead of assert
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63106 b2dd03c8-39d4-4d8f-98ff-823fe69b080e znz (Kazuhiro NISHIYAMA)
01:25 PM Revision 1289cc2d (git): * 2018-04-06
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63105 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
01:25 PM Revision d03fa8ca (git): symbol.h: remove stale symbol deleted at r47913
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63104 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
09:27 AM Feature #14666: nil.any?{} should return false
This could maybe be achieved in user code by adding some kind of Optional/Maybe construct, which could include Enumer... Eregon (Benoit Daloze)
02:24 AM Feature #14666: nil.any?{} should return false
I fully aggree with all the commenters.
It boils down to if nil should be Enumerable.
Obviously it should be not....
eike.rb (Eike Dierks)
12:26 AM Feature #14666 (Rejected): nil.any?{} should return false
`any?`, `all?`, and the family can be defined only on container objects from the meanings.
`nil` is not a container ...
nobu (Nobuyoshi Nakada)
12:00 AM Feature #14666: nil.any?{} should return false
`.any?` only makes sense on `Enumerable`s. There is no end to the methods that we would need to define on `nil` if w... Student (Nathan Zook)
07:27 AM Feature #5382 (Closed): %r{…} and similar delimited strings, arrays, and regexps aren’t highlighted in ruby-mode
According to nobu, this has been already fixed. Closing. mame (Yusuke Endoh)
05:28 AM Bug #5368: ensure節でsleepするようなThreadがあるとインタプリタが終了しない
現状の整理です。
```
Thread.new do
begin
sleep
ensure
sleep
end
end
```
もともとは上のコードで CPU 使用率 100% ...
mame (Yusuke Endoh)
03:58 AM Bug #14668 (Closed): Ruby2.6.0-preview1とtrunkでnmatrixがコンパイルできない
https://github.com/SciRuby/nmatrix
Ruby2.5.1 まではコンパイルできたのですが、Ruby2.6.0-preview1 および trunk(r63103) でコンパイルできませんでした。
...
okkez (okkez _)
03:14 AM Bug #14387: Ruby 2.5 を Alpine Linux で実行すると比較的浅めで SystemStackError 例外になる
jottr (jottr -) wrote:
> I'd like to inquire on the progress of this issue. What is missing to get this resolved?
...
naruse (Yui NARUSE)
02:55 AM Bug #12181 (Closed): ブロックがたくさんあるファイルを編集するとruby-modeが重い
再度確認したら、特に問題なく使えるているみたいなので閉じます。 okkez (okkez _)

04/05/2018

11:06 PM Feature #14666 (Rejected): nil.any?{} should return false
Hi everyone at ruby/trunk
I encountered `nil.any?`
```
undefined method `any?' for nil:NilClass (NoMethodError...
eike.rb (Eike Dierks)
09:22 PM Bug #14664: After upgrade to 2.4.4: header field value cannot include CR/LF
[email protected] wrote:
> It's from r61359 because HTTP doesn't allow CRLF in their header value.
> I think your ...
normalperson (Eric Wong)
05:16 PM Bug #14387: Ruby 2.5 を Alpine Linux で実行すると比較的浅めで SystemStackError 例外になる
I'd like to inquire on the progress of this issue. What is missing to get this resolved?
It is affecting downstre...
jottr (jottr -)
05:12 PM Feature #14594: Rethink yield_self's name
My two cents:
This method acts like a **pipe operator**, it passes itself **through** the block and returns whatev...
americodls (Americo Duarte)
01:53 PM Bug #14662: Stack consistency error in 2.5.1
Thanks for the quick response! Here it is in trunk (commit ab73022cb2357db5e757aed6a7c2f0c4268aa7c7):
~~~
Fa...
jacobevelyn (Jacob Evelyn)
01:13 PM Bug #14660 (Closed): RubyVM::InstructionSequence.load_from_binary(bin).eval may cause SEGV after r62856
Applied in changeset trunk|r63103.
----------
compile.c: fix positions encode
* compile.c (ibf_load_iseq_each): ise...
nobu (Nobuyoshi Nakada)
01:13 PM Revision 7084c015 (git): compile.c: fix positions encode
* compile.c (ibf_load_iseq_each): iseq_size necessary to encode
positions is set in ibf_load_code(). [Bug #14660]
...
nobu (Nobuyoshi Nakada)
12:46 PM Revision d1c9c0ad (git): compile.c: do not dump pointers
* compile.c (ibf_dump_iseq_each): ensure succ_index_table pointer
field to be 0.
git-svn-id: svn+ssh://ci.ruby-lan...
nobu (Nobuyoshi Nakada)
12:03 PM Revision e9c2fe4e (git): compile.c: clear padding
* compile.c (IBF_ZERO): clear padding of struct not to include
garbages in dumped binary data.
git-svn-id: svn+ssh...
nobu (Nobuyoshi Nakada)
09:48 AM Revision 6bcfa848 (git): lib/rubygems/test_case.rb: take over @gem_prelude_index
Gem::TestCase normalizes each path in $LOAD_PATH, which deleted the flag
of @gem_prelude_index.
git-svn-id: svn+ssh:...
mame (Yusuke Endoh)
07:05 AM Bug #14665 (Third Party's Issue): mailCatcher et ruby on rails
Seems an EventMachine's issue. nobu (Nobuyoshi Nakada)
07:04 AM Revision bc6e61f1 (git): compile.c: do not dump pointers
* compile.c (ibf_dump_iseq_each): do not dump succ_index_table
pointer. positions are dumped as integer arrays. p...
nobu (Nobuyoshi Nakada)
07:00 AM Revision 04dfc46a (git): compile.c: zero fill
* compile.c (ibf_dump_align): fill padding with zero, instead of
resizing only, not to leave garbages.
git-svn-id:...
nobu (Nobuyoshi Nakada)
01:05 AM Revision 4a7bf2ef (git): `make test-all COVERAGE=true` supports directory-separated build
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63097 b2dd03c8-39d4-4d8f-98ff-823fe69b080e mame (Yusuke Endoh)

04/04/2018

10:03 PM Bug #14663: getting "killed string.c" rdoc failed while trying to make ruby-2_5_1
I guess that the "Killed" message is from OOM Killer.
I want to confirm the message is from OOM Killer.
Please run ...
aycabta (aycabta .)
11:20 AM Bug #14663: getting "killed string.c" rdoc failed while trying to make ruby-2_5_1
Seems as if rdoc has a problem. If you do not need local rdoc, perhap
you can use "--disable-install-rdoc", just to ...
shevegen (Robert A. Heiler)
07:25 AM Bug #14663 (Closed): getting "killed string.c" rdoc failed while trying to make ruby-2_5_1

Sponsored by:
_____ _
|_ _| ___ ___ ___ _| | _ _ ___ ___
| | | -_|| _|| . || . ||...
bb426660 (Biswajit Biswas)
03:44 PM Revision 97d610be (git): * test/test_tempfile.rb (test_{new,create}_traversal_dir): should not assume `t`
is always set. if `t` is nil, `NoMethodError` will be raised and the real
cause will be hidden.
git-svn-id: svn+...
U.Nakamura
03:26 PM Revision c7d4c598 (git): * 2018-04-05
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
03:26 PM Revision 2de0c729 (git): test/test_tempfile.rb: close a file object created by Tempfile.create
To stop a "Leaked file descriptor" warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63094 b2dd03c8-39d4-4d...
mame (Yusuke Endoh)
02:03 PM Bug #14637 (Closed): Rational#to_f returns a wrong result when denominator is big
Applied in changeset trunk|r63093.
----------
bignum.c: Bignum#fdiv avoids double division when divisor is bignum
`...
mame (Yusuke Endoh)
02:02 PM Revision 85bcd2b3 (git): bignum.c: Bignum#fdiv avoids double division when divisor is bignum
`Rational(int, bignum).to_f` sometimes returned a wrong result because
`Bignum#div` casted its divisor to double. [B...
mame (Yusuke Endoh)
01:17 PM Revision ab73022c (git): mjit_compile.c: disable stack consistency check
This should be basically safe because VM already does this check.
I don't think JIT-ed code, which should be speciall...
k0kubun (Takashi Kokubun)
11:15 AM Bug #14665: mailCatcher et ruby on rails
I don't really speak french but it seems to be about rails rather
than ruby?
shevegen (Robert A. Heiler)
10:02 AM Bug #14665 (Third Party's Issue): mailCatcher et ruby on rails
bonjour,
chaque fois que je lance mailcatcher et que je me rends sur la page : 127.0.0.0:1080, mailcatcher stop et m...
lflapy (Laurent Madeleine)
11:00 AM Revision c2007e19 (git): iseq.c: indent iseq dump
* iseq.c (rb_iseq_disasm): indent catch_table iseq entries.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63091 ...
nobu (Nobuyoshi Nakada)
10:05 AM Bug #14662: Stack consistency error in 2.5.1
Thank you for the report.
Could you try with the trunk, which would dump running instructions on the error?
nobu (Nobuyoshi Nakada)
09:13 AM Bug #14664: After upgrade to 2.4.4: header field value cannot include CR/LF
Upgrade google-api-client gem to 0.20.0.
cf. https://github.com/google/google-api-ruby-client/pull/648
Tietew (Toru Iwase)
08:58 AM Bug #14664 (Rejected): After upgrade to 2.4.4: header field value cannot include CR/LF
It's from r61359 because HTTP doesn't allow CRLF in their header value.
I think your application was silently broken...
naruse (Yui NARUSE)
08:22 AM Bug #14664 (Rejected): After upgrade to 2.4.4: header field value cannot include CR/LF
We are experiencing this issue after upgrading from ruby 2.4.3p205 (2017-12-14 revision 61247) [x86_64-linux] to ruby... davidhrbac (David Hrbáč)
08:19 AM Revision 51d227e3 (git): refactoring r63073.
* cont.c (root_fiber_alloc): call `ConvertThreadToFiber()` here.
`rb_fiber_t` for root_fiber is allocated before r...
ko1 (Koichi Sasada)
07:46 AM Revision 746a88e1 (git): gc.c: Fix a typo
Pointed by hkdnet <[email protected]>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63089 b2dd03c8-39d4-4d8f...
yui-knk (Kaneko Yuichiro)
06:53 AM Revision e440bfae (git): rexml: Fix a XPath bug of /child::node()
[Bug #14600]
* lib/rexml/xpath_parser.rb: Fix a bug that "/child::node()" returns
XML declaration and text nodes o...
Sutou Kouhei
06:51 AM Revision 478d3dff (git): rexml: Add codes for debugging XPath logic
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63087 b2dd03c8-39d4-4d8f-98ff-823fe69b080e Sutou Kouhei
06:36 AM Revision 1d6ca665 (git): rexml: Fix a XPath bug of function()/path
[Bug #14600]
* lib/rexml/functions.rb: Fix a bug that "function()/path" always returns
nothing.
git-svn-id: svn+...
Sutou Kouhei
05:00 AM Revision c5632105 (git): use Queue for inter-thread synchronization.
* test/ruby/test_bignum.rb (test_interrupt_during_to_s): should not use
"while" synchronization, but should use Que...
ko1 (Koichi Sasada)
04:28 AM Revision 5ff72d05 (git): iseq.c: strip trailing spaces in dump
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
03:27 AM Revision b537823f (git): rexml: Fix a XPath bug of @attribute/parent
[Bug #14600]
* lib/rexml/functions.rb: Fix a bug that "@attribute/parent" doesn't
return element of its attribute....
Sutou Kouhei
03:26 AM Revision d050a28f (git): rexml: Fix a XPath bug of $variable
[Bug #14600]
* lib/rexml/functions.rb: Fix a bug that "$variable" returns
node instead of ndoe set.
git-svn-id: ...
Sutou Kouhei
01:26 AM Feature #14605: Remove `original_iseq` from `rb_iseq_constant_body`
On my comment, I want to make clear that is it a typo of "encoded" -> "decoded" or not.
> I don't understand why w...
ko1 (Koichi Sasada)

04/03/2018

11:29 PM Bug #14480 (Third Party's Issue): miniruby crashing when compiled with -O2 or -O1 on aarch64
GCC upstream changed aarch64 default behaviour on its revision 257984.
https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/com...
wanabe (_ wanabe)
09:54 PM Bug #14662 (Closed): Stack consistency error in 2.5.1
We've been trying to upgrade an app to Ruby 2.5 and are seeing interpreter crashes with `Stack consistency error` mes... jacobevelyn (Jacob Evelyn)
04:54 PM Revision c79307c0 (git): test_fiber.rb: fix test_create_fiber_in_new_thread
* test/ruby/test_fiber.rb (test_create_fiber_in_new_thread):
prefix to run, and get the result value not only waiti...
nobu (Nobuyoshi Nakada)
04:50 PM Revision 9ba849e6 (git): Fix typo
[Bug #14642]
[Fix GH-1855]
From: MSP-Greg <[email protected]>
git-svn-id: svn+ssh://ci.ruby-lang.or...
nobu (Nobuyoshi Nakada)
03:51 PM Revision c592ce40 (git): rexml: Fix a XPath bug of name(node-set)
[Bug #14600]
* lib/rexml/functions.rb: Fix a bug that "name(node-set)" returns
element instead of element name.
*...
Sutou Kouhei
03:42 PM Revision a03e6e5e (git): * 2018-04-04
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
03:42 PM Revision bc34d92f (git): mjit.c: add class serial of singleton class
for toplevel self.
Toplevel self's class is not `Object` but `#<Class:Object>`.
This commit allows to inline method ...
k0kubun (Takashi Kokubun)
03:30 PM Bug #14642: Fiber make crash on Windows - webrick/httpproxy.rb ?
@ko1
Thanks for the work. The test is not being run as `assert_euqal` contains a small typo. See [GitHub PR 1855...
MSP-Greg (Greg L)
10:26 AM Bug #14642: Fiber make crash on Windows - webrick/httpproxy.rb ?
Sorry for late fixing.
The easy repro is here:
```
def assert_create_fiber_in_new_thread
ret = Thread.n...
ko1 (Koichi Sasada)
10:21 AM Bug #14642 (Closed): Fiber make crash on Windows - webrick/httpproxy.rb ?
Applied in changeset trunk|r63073.
----------
Fix Fiber with Thread issue on Windows [Bug #14642]
* cont.c (rb_thre...
ko1 (Koichi Sasada)
08:02 AM Bug #14642: Fiber make crash on Windows - webrick/httpproxy.rb ?
I reverted r62966 and r62969 to keep CI green.
Could you re-commit them when you commit the fix?
naruse (Yui NARUSE)
11:32 AM Bug #14660 (Open): RubyVM::InstructionSequence.load_from_binary(bin).eval may cause SEGV after r62856
It's probably a bug of IBF, and has been revealed by [Feature#14370], I guess. nobu (Nobuyoshi Nakada)
10:50 AM Bug #14660 (Closed): RubyVM::InstructionSequence.load_from_binary(bin).eval may cause SEGV after r62856
Applied in changeset trunk|r63075.
----------
Reproducible test for [Feature#14370] @ [Bug #14660]
nobu (Nobuyoshi Nakada)
07:57 AM Bug #14660: RubyVM::InstructionSequence.load_from_binary(bin).eval may cause SEGV after r62856
It's since r62851. nobu (Nobuyoshi Nakada)
11:27 AM Revision 7f30b84c (git): adjust indent [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63076 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
10:50 AM Revision 02df45c4 (git): Reproducible test for [Feature#14370] @ [Bug #14660]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63075 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
10:22 AM Revision 1751ea76 (git): repatch r62966 and r62969.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63074 b2dd03c8-39d4-4d8f-98ff-823fe69b080e ko1 (Koichi Sasada)
10:21 AM Revision db3cc675 (git): Fix Fiber with Thread issue on Windows [Bug #14642]
* cont.c (rb_threadptr_root_fiber_setup): divide into two functions:
* rb_threadptr_root_fiber_setup_by_parent(): c...
ko1 (Koichi Sasada)
08:29 AM Revision c3da1625 (git): Honor --silent option
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63072 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
08:29 AM Revision e8b536c7 (git): Fixed unmatched quotes and brackets
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
08:10 AM Revision f6877949 (git): adjust indent [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63070 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
07:54 AM Revision 0c632c6f (git): Revert r62966 and r62969
It breaks mswin's test-all
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63069 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
naruse (Yui NARUSE)
06:57 AM Bug #14658 (Closed): Kernel#singleton_method is incompatible with Module#prepend.
Applied in changeset trunk|r63067.
----------
Fix Kernel#singleton_method with Module#Prepend
* proc.c (rb_obj_sing...
nobu (Nobuyoshi Nakada)
06:57 AM Revision 60f0e763 (git): proc.c: fix segfault when no singleton class
* proc.c (rb_obj_singleton_method): bail out if the receiver does
not have the singleton class without accessing th...
nobu (Nobuyoshi Nakada)
06:57 AM Revision c7770f90 (git): Fix Kernel#singleton_method with Module#Prepend
* proc.c (rb_obj_singleton_method): search the method entry from
the origin class, for fix prepended modules. [Bug...
nobu (Nobuyoshi Nakada)
06:25 AM Revision 5bcb76eb (git): removed never used variable
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e nobu (Nobuyoshi Nakada)
05:56 AM Revision 577d258e (git): * 2018-04-03
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63065 b2dd03c8-39d4-4d8f-98ff-823fe69b080e svn[bot]
05:56 AM Revision 375cd707 (git): Support upstream directory structure for ruby/csv.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63064 b2dd03c8-39d4-4d8f-98ff-823fe69b080e hsbt (Hiroshi SHIBATA)

04/02/2018

11:50 PM Bug #14660 (Closed): RubyVM::InstructionSequence.load_from_binary(bin).eval may cause SEGV after r62856
A certain script can cause SEGV when ISeq#to_binary -> load_from_binary -> eval.
```
$ ./miniruby -ve 'str = "cla...
wanabe (_ wanabe)
04:34 PM Bug #14659 (Closed): segfault in ConditionVariable#broadcast and ConditionVariable#signal
I'm encountering a consistent segfault within a Rails application running Phusion Passenger on Ruby 2.5.0 and Ruby 2.... [email protected] (Nathan Beyer)
03:24 PM Bug #14658 (Closed): Kernel#singleton_method is incompatible with Module#prepend.
It's not possible to get singleton method using Kernel#singleton_method if singleton class was prepended with any mod... nashby (Vasiliy Ermolovich)
01:13 PM Feature #14594: Rethink yield_self's name
bughit (bug hit) wrote:
> What about `tap!` - since tap is already in use, this won't be stealing another word, and ...
cmoel (Christopher Moeller)
06:50 AM Feature #14594: Rethink yield_self's name
> I prefer `itself`
`itself` is already taken in block-less form.
It was my initial idea too (see links in the...
zverok (Victor Shepelev)
02:31 AM Feature #14594: Rethink yield_self's name
I agree that `yield_self` is not a great name. But `then` does not "say what it does" enough in my opinion. I prefer ... jeromedalbert (Jerome Dalbert)
12:39 PM Revision 3be45505 (git): Win32API.rb: use uplevel option to warn
Also warns always regardless $VERBOSE.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63063 b2dd03c8-39d4-4d8f-98...
nobu (Nobuyoshi Nakada)
11:39 AM Revision bae19b55 (git): error.c: prepend "warning: " always
* error.c (rb_warn_m): prepend the string "warning: " if uplevel
keyword is given, even if caller file and line inf...
nobu (Nobuyoshi Nakada)
11:33 AM Bug #14657: Fix build error with LibreSSL 2.7
Sorry for the noise... The Github repo is not very prominent on your website.
Updating our patch with upstream.
spil (Bernard Spil)
02:43 AM Bug #14657 (Assigned): Fix build error with LibreSSL 2.7
This issue was already handled at upstream: https://github.com/ruby/openssl/pull/193
hsbt (Hiroshi SHIBATA)
07:33 AM Bug #14634: Queue#push seems to crash after fork
Thanks. I suspected autoload was a problem; too :x I'll try to
take a look at it in the coming days (sorry, many ...
normalperson (Eric Wong)
07:33 AM Misc #14632: [ANN] git.ruby-lang.org
[email protected] wrote:
> git.r-l.o only supports https protocol now. And I try to
> improve it clone speed.

...
normalperson (Eric Wong)
03:47 AM Misc #14632: [ANN] git.ruby-lang.org
Hi all.
I added git.ruby-lang.org to this redmine project.
You can refer git ref like https://bugs.ruby-lang.or...
hsbt (Hiroshi SHIBATA)
03:32 AM Misc #14632: [ANN] git.ruby-lang.org
>I could not connect using git protocol, but maybe it's normal and it
>won't be supported? I then attempted HTTPS, b...
hsbt (Hiroshi SHIBATA)
04:44 AM Feature #14656 (Closed): Improve mkmf error message when ruby.h is missing
Applied in changeset trunk|r63061.
----------
Improve mkmf error message
* lib/mkmf.rb: Improve the error message w...
nobu (Nobuyoshi Nakada)
04:40 AM Feature #14656: Improve mkmf error message when ruby.h is missing
"Development tools" sound like compiler toolchain or similar, as mkmf.rb raises `RuntimeError` with the message:
`...
nobu (Nobuyoshi Nakada)
04:44 AM Revision f961bad1 (git): Improve mkmf error message
* lib/mkmf.rb: Improve the error message when ruby.h is missing,
to suggest installing separate packages. [Feature...
nobu (Nobuyoshi Nakada)
04:20 AM Revision e6d7389c (git): Keep feature names loaded in the block
* lib/rubygems/test_case.rb (Gem::TestCase#save_loaded_features):
keep feature names for rubygem libraries loaded i...
nobu (Nobuyoshi Nakada)
03:34 AM Feature #14022 (Rejected): String#surround
nobu (Nobuyoshi Nakada)
03:30 AM Revision 5c7e7846 (git): Fix typo on URI.hierarchical? [ci skip]
* lib/uri/generic.rb (hierarchical?): [DOC] Fix typo in the
description. [Fix GH-1851]
From: Harry Llewelyn <advo...
nobu (Nobuyoshi Nakada)
01:55 AM Bug #14651 (Closed): Building 2.5.1p57 with -flto fails on gcc 5.4.0
gcc v5.4.0 is the latest gcc in Ubuntu 16.04 LTS.
I've upgraded to Ubuntu 17.10 and there it is currently:
~~~
...
glebm (Gleb Mazovetskiy)
12:31 AM Bug #14600 (Closed): test-all & REXML - fixup
Applied in changeset commit:ruby-git|f0c734660faea02ce455b14e75e006bb4314e173.
----------
Start re-enabling Jaxen te...
kou (Kouhei Sutou)
 

Also available in: Atom