Project

General

Profile

Activity

From 02/26/2016 to 03/03/2016

03/03/2016

11:27 PM Bug #12139: return OpenSSL::Random.random_bytes(n) call takes to long. OpenSSL:: bug on windows.
Sorry, I've forgotten to note that `Random.raw_seed` is Ruby 2.3 feature. usa (Usaku NAKAMURA)
10:42 PM Bug #12139: return OpenSSL::Random.random_bytes(n) call takes to long. OpenSSL:: bug on windows.
`Random.raw_seed` is an alternative to `OpenSSL::Random.random_seed`.
This calls `CryptGenRandom` internally.
BTW...
usa (Usaku NAKAMURA)
10:11 PM Bug #12139: return OpenSSL::Random.random_bytes(n) call takes to long. OpenSSL:: bug on windows.
Yui NARUSE wrote:
> Your issue sounds related with https://wiki.openssl.org/index.php/Random_Numbers#Windows_Issues
...
Justin (Justin Ward)
10:06 PM Bug #12139: return OpenSSL::Random.random_bytes(n) call takes to long. OpenSSL:: bug on windows.
Nobuyoshi Nakada wrote:
> Maybe the entropy pool exhausted?
> Does moving mouse or typing keyboard wake up OpenSSL?...
Justin (Justin Ward)
08:27 AM Bug #12139: return OpenSSL::Random.random_bytes(n) call takes to long. OpenSSL:: bug on windows.
Your issue sounds related with https://wiki.openssl.org/index.php/Random_Numbers#Windows_Issues
But [Bug 2100 the he...
naruse (Yui NARUSE)
08:26 AM Bug #12139 (Feedback): return OpenSSL::Random.random_bytes(n) call takes to long. OpenSSL:: bug on windows.
Maybe the entropy pool exhausted?
Does moving mouse or typing keyboard wake up OpenSSL?
nobu (Nobuyoshi Nakada)
05:45 AM Bug #12139 (Closed): return OpenSSL::Random.random_bytes(n) call takes to long. OpenSSL:: bug on windows.
I have been a windows dev for a while now. I have never solved this rails startup issue. Running one Rspec test takes... Justin (Justin Ward)
09:29 PM Feature #12141: send and __send__
Sorry, hard time editing/formating my post !
:-(
But I hope you understand what I mean !
hermes128 (Sebastian Herm)
09:21 PM Feature #12141: send and __send__
[deleted by author] hermes128 (Sebastian Herm)
09:17 PM Feature #12141 (Open): send and __send__
Hi guys !
We have this concept of sending messages to objects with `Object#send`, and that's fine, but often a chi...
hermes128 (Sebastian Herm)
08:03 PM Bug #11844: Please update unicode-licensed files (license issue)
Another thing - you're saying your copies of the files were modified. If the -data- inside them was modified, does th... zeha (Christian Hofstaedtler)
08:02 PM Bug #11844: Please update unicode-licensed files (license issue)
The non-free problem is with this line: "supplied in this file in the creation of products supporting the Unicode Sta... zeha (Christian Hofstaedtler)
05:46 PM Bug #12140 (Closed): Serialization of OpenStruct objects with YAML fails
Indeed, it's a dupe of #11884. marcandre (Marc-Andre Lafortune)
04:13 PM Bug #12140: Serialization of OpenStruct objects with YAML fails
Maybe it's a dup of https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/53366
jmanrubia (Jorge Manrubia)
04:04 PM Bug #12140 (Closed): Serialization of OpenStruct objects with YAML fails
When deserializing a serialized YAML open-struct object, it fails with an exception `NoMethodError: undefined method ... jmanrubia (Jorge Manrubia)
09:49 AM Misc #12124: Use Automake
Just I remind,
Ruby's Makefile must support nmake.
I know automake can generate Makefile which runs with bsdmake, b...
naruse (Yui NARUSE)
06:22 AM Feature #11666: IPAddr#private?
As far as I understand RFC4193 never defines its range being "private". There also are other private-ish address ran... shyouhei (Shyouhei Urabe)
05:41 AM Bug #12100 (Closed): CSV converters fail when using single arg proc
closing as per request shyouhei (Shyouhei Urabe)
05:10 AM Feature #12093: Eval InstructionSequence with binding
"ISeq#compile's need of binding" means a template engine cannot cache compiled ISeqs for later invocation, right? I d... shyouhei (Shyouhei Urabe)
05:09 AM Bug #11587 (Closed): Make OpenStruct#new_ostruct_member and #modifiable fully private API
Applied in changeset r53987.
----------
ostruct.rb: make internal methods private
* lib/ostruct.rb (modifiable?, ne...
nobu (Nobuyoshi Nakada)
04:38 AM Feature #8921: Allow select, reject, etc to accept a regex
Do you still need this? We now have grep_v which resembles your reject example. shyouhei (Shyouhei Urabe)

03/02/2016

06:08 PM Feature #12138 (Feedback): Support `Kernel#load_with_env(filename, cbase: SomeMod, cref: someMod, binding: SomeMod) # => obj`
Ruby's `require` and `load` methods currently only return `true`, which means that any code being loaded must affect ... josh.cheek (Josh Cheek)
05:58 PM Bug #12137 (Closed): Ruby2.3 blk.binding crashes instead of giving "Can't create Binding from C level Proc (ArgumentError)"
The following code raises an ArgumentError on 2.2. On 2.3, it crashes in binding.
~~~ruby
def repro(&blk)
blk....
zeha (Christian Hofstaedtler)
03:24 PM Bug #12135 (Feedback): OptParse rejects --longopt= with a zero-length argument.
What is "C's OptParse"? nobu (Nobuyoshi Nakada)
10:57 AM Bug #12135 (Closed): OptParse rejects --longopt= with a zero-length argument.
OptParse diverges from C's OptParse by rejecting a zero-length argument given to a long option.
C accepts it:
~...
Warwick (Tim Baverstock)
02:07 PM Bug #12127 (Third Party's Issue): LANG environment is not respected
Yui NARUSE wrote:
> I can't reproduce it.
> Could you show `ruby/ruby -ve "p Encoding.find('locale');puts ''.encodi...
vo.x (Vit Ondruch)
12:53 PM Bug #12136: OpenStruct.new(format: :bar).send :format # => too few arguments
It's this commit: https://github.com/ruby/ruby/blob/7fa21558051e5412dcb790f528e392476edd4389/lib/ostruct.rb
By def...
niko (Niko Dittmann)
11:19 AM Bug #12136 (Closed): OpenStruct.new(format: :bar).send :format # => too few arguments
#send(:format) to an OpenStruct with a field named :format raises an ArgumentError in Ruby 2.3.0:
~~~
OpenStruct....
niko (Niko Dittmann)
12:27 PM Feature #11527: IPAddr#mask_addr isn't a method
There is a proposal for a fix on https://github.com/ruby/ruby/pull/1269 (see https://bugs.ruby-lang.org/issues/11210) herwinw (Herwin Quarantainenet)
12:12 PM Feature #11210: IPAddr has no public method to get the current subnet mask
Assigning this to the official maintainer of ipaddr.
Or should it be assigned to matz?
Could this be decided at t...
Eregon (Benoit Daloze)
11:16 AM Feature #12134: Comparison between `true` and `false`
for the first case you can use #partition
```ruby
[7, 6, 5, 4, 3, 2, 1].partition{|e| Prime.prime?(e) }.flatten
...
Hanmac (Hans Mackowiak)
10:56 AM Feature #12134 (Open): Comparison between `true` and `false`
There are some needs to sort elements depending on whether they satisfy certain condition expressed as a predicate. F... sawa (Tsuyoshi Sawada)
07:49 AM Bug #10746 (Rejected): ruby bundles files that requires minitest/testunit (removed from library on 2.2.0)
hsbt (Hiroshi SHIBATA)
07:43 AM Bug #10914 (Rejected): Always reproducible crash on FreeBSD with unicorn and 2.2.0p0 (2.1.5p273 too)
hsbt (Hiroshi SHIBATA)
06:19 AM Bug #9369 (Closed): Using XMLScanStreamParser in xmlrpc/parser may result in parse errors
Applied in changeset r53981.
----------
* lib/xmlrpc.rb: Removed broken parser named XMLScanStreamParser.
It's not...
hsbt (Hiroshi SHIBATA)
06:12 AM Bug #9370 (Closed): Parse error when using XMLTreeParser in xmlrpc
Applied in changeset r53980.
----------
* lib/xmlrpc.rb: Removed broken parser named XMLTreeParser.
Required gem o...
hsbt (Hiroshi SHIBATA)
03:42 AM Bug #12056: kwarg is not allowed after `return`
cf https://docs.google.com/document/u/2/d/1rj7ODOCSfcsQeBd6-p-NiVwqxDUg05G66LwDOkKOGTw/pub
Matz is negative to this.
shyouhei (Shyouhei Urabe)

03/01/2016

08:31 PM Feature #12133 (Feedback): Ability to exclude start when defining a range
An intuitive, approach would be to allow defining ranges like so:
~~~
[1..10]
[1..10)
(1..10]
(1..10)
~~~
...
slash_nick (Ryan Hosford)
03:29 PM Bug #12088: Segmentation fault at 0x00000000000000 ruby 2.2.1p85 (2015-02-26 revision 49769) [x86_64-linux]
2.2.2 is outdated. nobu (Nobuyoshi Nakada)
02:48 PM Bug #12088: Segmentation fault at 0x00000000000000 ruby 2.2.1p85 (2015-02-26 revision 49769) [x86_64-linux]
Upgraded to 2.2.2
BTW. We'r using CentOS 6.6. libc2.12
Just faced with problem again:
~~~
*** glibc detected...
twKrash (Maksim Dvoryanchenko)
12:32 PM Bug #12132 (Closed): Crash during tests
After updating a rails application to 2.3 I am experiencing intermittent crashes when I run `bundle exec rspec` chills42 (Craig Hills)
11:00 AM Feature #10617: Change multiple assignment in conditional from parse error to warning
I find this really unintuitive and share some of 'bug hit's exasperation. It's clear that the return value, like ever... mikecmpbll (Mike Campbell)
10:40 AM Bug #12131 (Closed): Should defining singleton_method_added call itself?
This seems surprising:
~~~
obj = Object.new
def obj.singleton_method_added(n)
p n
end
def obj.new_singleton...
Eregon (Benoit Daloze)
06:45 AM Bug #12130 (Closed): WEBrick::HTTPProxy closes connection when the socket is not writable temporally
`WEBrick::HTTPProxy#do_CONNECT` closes connection when `Errno::EAGAIN` or `Errno::WOULDBLOCK` occurred.
These except...
labocho (Keisuke NISHI)
06:15 AM Feature #12115: Add Symbol#call to allow to_proc shorthand with arguments
For a similar proposal, please cf. #10394. sawa (Tsuyoshi Sawada)
02:41 AM Feature #12115: Add Symbol#call to allow to_proc shorthand with arguments
Yes, `&:to_s(16)` is exactly my (rejected) proposal. nobu (Nobuyoshi Nakada)
04:08 AM Bug #12127: LANG environment is not respected
I can't reproduce it.
Could you show `ruby/ruby -ve "p Encoding.find('locale');puts ''.encoding"`?
naruse (Yui NARUSE)
02:41 AM Bug #12127 (Feedback): LANG environment is not respected
Can you explain what the problem is with
$ LANG=en_US.utf-8 ruby -e "puts ''.encoding"
US-ASCII
As far as I un...
duerst (Martin Dürst)
03:13 AM Feature #12129: syntactic sugar for dynamic method dispatch `object_expression:method_name_expression(1, 2)`
Yukihiro Matsumoto wrote:
> Describe more concretely and preferably tell us why do you need it, please.
`object_e...
bughit (bug hit)
03:00 AM Feature #12129: syntactic sugar for dynamic method dispatch `object_expression:method_name_expression(1, 2)`
Describe more concretely and preferably tell us why do you need it, please.
Matz.
matz (Yukihiro Matsumoto)
02:23 AM Feature #12125: Proposal: Shorthand operator for Object#method
Stefan Merettig wrote:
> * Using `.>`: `the_object.>a_method`
> * Using `<..>`: `the_object<a_method>`
These two...
nobu (Nobuyoshi Nakada)
02:09 AM Bug #12128 (Rejected): Strings in `ARGV` are frozen
nobu (Nobuyoshi Nakada)
01:58 AM Feature #12113: Global method inside Delegator causes NameError
Correction: the infinite recursion was a bug in the patch, and fixed the branch.
The trick of `Kernel` for [Bug #9...
nobu (Nobuyoshi Nakada)
01:41 AM Bug #12126: [PATCH] openssl: accept moving write buffer for write_nonblock
[email protected] wrote:
> Before this, a Rubyist would need to remember the exact object
> which failed to wr...
normalperson (Eric Wong)

02/29/2016

11:06 PM Feature #12020: Documenting Ruby memory model
I understand your point, I would like explore how it could be solved in MRI before relaxing the constant and method r... pitr.ch (Petr Chalupa)
10:03 PM Feature #12129 (Open): syntactic sugar for dynamic method dispatch `object_expression:method_name_expression(1, 2)`
bughit (bug hit)
09:34 PM Feature #12115: Add Symbol#call to allow to_proc shorthand with arguments
Although I don't understand the Japanese, the linked issue, with a similar syntax to what Shel vacu proposed above, w... felixbuenemann (Felix Bünemann)
08:45 PM Feature #12115: Add Symbol#call to allow to_proc shorthand with arguments
I think there have been many other similar proposals. Nobu linked to other
discussions.
From what I have seen, I ...
shevegen (Robert A. Heiler)
06:35 PM Feature #12115: Add Symbol#call to allow to_proc shorthand with arguments
I agree that there should be some syntax for doing this, but I don't think this is the proper way to do it.
Person...
shelvacu (Shel vacu)
08:40 PM Feature #12125: Proposal: Shorthand operator for Object#method
I think the `&File->basename` looks confusing since we also have
`->` standalone now.
`object->method` reminds me...
shevegen (Robert A. Heiler)
04:40 PM Feature #12125: Proposal: Shorthand operator for Object#method
Please don't do this!!! No need to make the language more complex just to solve such small issue!!!
If you want to...
funny_falcon (Yura Sokolov)
02:29 PM Feature #12125: Proposal: Shorthand operator for Object#method
How about this one?
~~~ruby
class UnfoundMethod
def initialize(receiver)
@receiver = receiver
end
...
ksss (Yuki Kurihara)
02:14 PM Feature #12125: Proposal: Shorthand operator for Object#method
Yukihiro Matsumoto wrote:
> but I don't think `->` is a good idea.
Other options I can think of are:
* Using `...
Papierkorb (Stefan Merettig)
12:58 PM Feature #12125: Proposal: Shorthand operator for Object#method
For this kind of "conceptual" methods I sometimes define just one-letter shortcuts in core_ext.rb, like `.map(&File.m... zverok (Victor Shepelev)
12:37 AM Feature #12125: Proposal: Shorthand operator for Object#method
I like the idea of short hand notation for `Object#method()`, but I don't think `->` is a good idea.
Matz.
matz (Yukihiro Matsumoto)
08:33 PM Bug #12128: Strings in `ARGV` are frozen
I believe that this is actually how ruby may have behaved before the transition into frozen strings
already; at the ...
shevegen (Robert A. Heiler)
07:35 PM Bug #12128: Strings in `ARGV` are frozen
Be advised that you can say `ARGV.map!(&:+@)` if you really want to modify the elements in-place, but that's probably... 0x0dea (D.E. Akers)
06:15 PM Bug #12128: Strings in `ARGV` are frozen
Sorry, I found that it is indeed a feature that they are frozen. Please reject this. sawa (Tsuyoshi Sawada)
06:08 PM Bug #12128 (Rejected): Strings in `ARGV` are frozen
It is not clear how the frozen status of strings in `ARGV` are to be described, but regardless of what I try to do (i... sawa (Tsuyoshi Sawada)
08:13 PM Bug #11962: Ruby 2.3.0 causing compile failure on extensions using a C++ compiler
We are trying to transition Debian unstable to ruby2.3, it would be very helpful to have this applied to the 2.3 branch. terceiro (Antonio Terceiro)
07:56 PM Feature #11625 (Assigned): Unlock GVL for SHA1 calculations
ext/digest should use OpenSSL, which has many optimizations.
But old ruby's ext/digest/sha1 was buggy.
Through r5...
naruse (Yui NARUSE)
02:14 PM Bug #12127 (Third Party's Issue): LANG environment is not respected
Ruby 2.2:
~~~
$ ruby -v
ruby 2.2.4p230 (2015-12-16 revision 53155) [x86_64-linux]
$ ruby -e "puts ''.encoding...
vo.x (Vit Ondruch)
01:02 PM Bug #12126 (Closed): [PATCH] openssl: accept moving write buffer for write_nonblock
~~~
By setting the SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER flag.
This flag was introduced at the same time as
SSL_MODE...
normalperson (Eric Wong)
12:35 PM Feature #12113: Global method inside Delegator causes NameError
Benoit Daloze wrote:
> Would this patch allow to remove the special case for Kernel dispatch then? Or should it be k...
nobu (Nobuyoshi Nakada)
10:17 AM Feature #12113: Global method inside Delegator causes NameError
Nobuyoshi Nakada wrote:
> Benoit Daloze wrote:
> > Would that solve the OP example code since `some_func` is define...
Eregon (Benoit Daloze)
08:01 AM Feature #12113: Global method inside Delegator causes NameError
Benoit Daloze wrote:
> Would that solve the OP example code since `some_func` is defined in `Object`, not `Kernel`?
...
nobu (Nobuyoshi Nakada)
08:31 AM Misc #12124: Use Automake
On 02/29/2016 03:17 PM, Eric Wong wrote:
> [email protected] wrote:
>> - I'm afraid automake contaminates thi...
shyouhei (Shyouhei Urabe)
06:48 AM Misc #12124: Use Automake
I generally for this, but ...
C.J. Collier wrote:
> It looks like there is a lot of duplicate code that could be ...
naruse (Yui NARUSE)
06:21 AM Misc #12124: Use Automake
[email protected] wrote:
> - I'm afraid automake contaminates this project with GPL.

Not true, automake giv...
normalperson (Eric Wong)
01:14 AM Misc #12124: Use Automake
- I'm afraid automake contaminates this project with GPL.
- I'm afraid this world is not built on top of GNU. AFAIK...
shyouhei (Shyouhei Urabe)
06:46 AM Bug #12123 (Feedback): FileUtils.ln_s create a '.symlink' file not a symbolic link on windows
Could you show failed messages? nobu (Nobuyoshi Nakada)
04:09 AM Bug #12078: Segmentation fault in did_you_mean with ruby revision 53608
r53524 is the revision in the trunk, not 2.3.
And #11928's backport status to 2.3 is still REQUIRED.
nobu (Nobuyoshi Nakada)
01:55 AM Bug #12120 (Feedback): [target/sh4] error: 'asm' operand requires impossible reload
What constraints does `DTRACE_PROBE4` macro have? nobu (Nobuyoshi Nakada)
01:02 AM Bug #12103: ruby process hangs while executing regular expression.
On 02/28/2016 12:22 PM, Eric Wong wrote:
> Keep in mind the equivalent Perl terminates just fine:

Yes. But,

>...
shyouhei (Shyouhei Urabe)

02/28/2016

09:43 PM Feature #12125: Proposal: Shorthand operator for Object#method
> The & operator lets one pass a #call-able object as block.
I meant `#to_proc`-able objects, sorry for the confus...
Papierkorb (Stefan Merettig)
09:39 PM Feature #12125 (Open): Proposal: Shorthand operator for Object#method
Hello,
The `&` operator lets one pass a `#call`-able object as block.
Really useful feature, but at the moment,...
Papierkorb (Stefan Merettig)
01:09 PM Bug #12078: Segmentation fault in did_you_mean with ruby revision 53608
I also got a similar bug with Ruby 2.3.0p7 revision 53608. As the poster writes, this version is later than revision ... sawa (Tsuyoshi Sawada)
11:41 AM Bug #12121: 異なる名前空間にある同名の定数により Module.constans の結果の並びが変わる
問題が起きたライブラリは dotenv というライブラリです。
https://github.com/bkeepers/dotenv
Module.constants の戻り値として `[Substitutions::Va...
koic (Koichi ITO)
11:07 AM Bug #12121 (Feedback): 異なる名前空間にある同名の定数により Module.constans の結果の並びが変わる
ちなみにどういうライブラリでどういう問題が起きたのでしょうか。 nobu (Nobuyoshi Nakada)
08:52 AM Bug #12121 (Rejected): 異なる名前空間にある同名の定数により Module.constans の結果の並びが変わる
`Module#constants`に順序の保証はありません。 nobu (Nobuyoshi Nakada)
11:28 AM Feature #12101 (Closed): Add verbose failure messages and avoid infamous DRb::DRbConnError
Applied in changeset r53962.
----------
* lib/drb/drb.rb (error_print): Add verbose failure messages and
avoid in...
seki (Masatoshi Seki)
09:50 AM Feature #12113: Global method inside Delegator causes NameError
Would that solve the OP example code since `some_func` is defined in `Object`, not `Kernel`?
Using `Kernel.method`...
Eregon (Benoit Daloze)
05:17 AM Feature #12113: Global method inside Delegator causes NameError
It's the current spec that delegator cannot call private method of the target, because it was impossible to tell it w... nobu (Nobuyoshi Nakada)
08:24 AM Misc #12124 (Closed): Use Automake
It looks like there is a lot of duplicate code that could be removed by making use of automake.
Are there any reas...
cjcollier (C.J. Collier)
04:40 AM Feature #12043 (Closed): Add a method to NoMethodError that tells if private methods are callable at the time of
Applied in changeset r53961.
----------
NoMethodError#private_call?
* error.c (nometh_err_initialize): add private_...
nobu (Nobuyoshi Nakada)
03:31 AM Bug #12103: ruby process hangs while executing regular expression.
[email protected] wrote:
> Status changed from Open to Rejected
>
> I simplified this as follows:
> regex ...
normalperson (Eric Wong)
03:00 AM Bug #12123 (Closed): FileUtils.ln_s create a '.symlink' file not a symbolic link on windows
when building ruby, 'test_cp_r_symlink' fail on make test-all personnel (Am I Who)
01:32 AM Feature #12110: Create a method to avoid vacuous truth?
Martin Dürst wrote:
> Andrew Vit wrote:
>
> > This is still surprising to me, it looks like a contradiction:
> >...
sawa (Tsuyoshi Sawada)
12:51 AM Feature #12110: Create a method to avoid vacuous truth?
Andrew Vit wrote:
> This is still surprising to me, it looks like a contradiction:
>
> ```ruby
> [].any? #=> f...
duerst (Martin Dürst)

02/27/2016

09:21 PM Misc #12122 (Closed): Array Documentation (set intersection, union)
**Set Intersection**
* Most know what intersection means, but saying the operation excludes duplicates could be mi...
slash_nick (Ryan Hosford)
07:34 PM Bug #12121 (Closed): 異なる名前空間にある同名の定数により Module.constans の結果の並びが変わる
Ruby 2.4.0-dev で、Ruby 2.3.0 以前と変わっている振る舞いについてです。
自身のモジュール定義の前に、異なる名前空間で同名の定数が定義されていると
Module.constants の結果の並びに影響を...
koic (Koichi ITO)
02:23 PM Bug #12120 (Closed): [target/sh4] error: 'asm' operand requires impossible reload
Hello!
ruby2.3 fails to build from source on sh4 (Hitachi/Renesas SuperH), the build fails with [1]:
```
gcc -...
glaubitz (John Paul Adrian Glaubitz)
01:59 PM Feature #12110: Create a method to avoid vacuous truth?
Waldyr de Souza wrote:
> I often find myself running into unexpected results when using #all? for example
>
> ```...
avit (Andrew Vit)
01:53 PM Feature #12119 (Closed): next_prime for lib/prime.rb
cf. https://github.com/ruby/ruby/pull/1272

## Rationale
To me, integer-without-limit is one of the greatest fe...
dankogai (Dan Kogai)
12:07 PM Bug #12118: ruby2.3: Segfaults on m68k due to improper stack allocation
Update: It seems the suggested patch by Andreas Schwab does not help on ruby2.3 anymore. So, for ruby2.3, something d... glaubitz (John Paul Adrian Glaubitz)
09:37 AM Bug #12118 (Closed): ruby2.3: Segfaults on m68k due to improper stack allocation
Hello!
On Motorola 680x0, ruby2.2 and ruby2.3 segfault when running the Ruby interpretor:
./miniruby -I./lib -I...
glaubitz (John Paul Adrian Glaubitz)
09:11 AM Bug #12103 (Rejected): ruby process hangs while executing regular expression.
I simplified this as follows:
regex = /\(a+( ?a*)*\)/
detail = "(aaaa aaaaaaa aaaaa aaaaaaaaa aaaaa"
It still hang...
duerst (Martin Dürst)
02:21 AM Feature #12085: [PATCH] openssl: document `exception: false' for *_nonblock
[email protected] wrote:
> I do not plan to commit the test change since OpenSSL behavior
> may be improved in ...
normalperson (Eric Wong)

02/26/2016

10:20 PM Feature #11666: IPAddr#private?
IPv6 has a private range too: d00::/8 (RFC 4193)
Also, there are more IP ranges that have been reserved for specia...
herwin (Herwin W)
08:49 PM Bug #12117 (Closed): UDPSocket.new crash on win32 with "rb_update_max_fd: invalid fd (xxx) given"
OS is Windows 7. The following command line reproduces the issue:
$ ruby22 -rsocket -e "UDPSocket.new(Socket::AF_I...
spatulasnout (B Kelly)
06:04 PM Feature #12116 (Open): `Fixnum#divmod`, `Bignum#divmod` with multiple arguments
Sometimes, I need to apply `divmod` repeatedly. For example, in order to convert a number expressing seconds into app... sawa (Tsuyoshi Sawada)
06:03 PM Feature #12115: Add Symbol#call to allow to_proc shorthand with arguments
Edited to remove `**kwargs` argument I added, which would require checking if the called method supports them. felixbuenemann (Felix Bünemann)
05:51 PM Feature #12115 (Open): Add Symbol#call to allow to_proc shorthand with arguments
I am a great fan of the `Symbol#to_proc` shorthand when mapping or reducing collections:
```ruby
[1,2,16].map(&:t...
felixbuenemann (Felix Bünemann)
02:09 PM Bug #12112: Resolv.getname with IPv6 noop
I'm seeing this issue on 2.0.0, 2.2.1, 2.2.2, but not 1.9.3 and 2.2.3 (I suspect all versions between 2.0.0 and 2.2.3... wb (Dmitri Dolguikh)
02:00 PM Feature #12114: $VERBOSE = true is being ignored
Thus is a spec now.
That warning is at parsing, but `BEGIN` blocks are executed after it.
It may be possible by e...
nobu (Nobuyoshi Nakada)
11:18 AM Feature #12114 (Open): $VERBOSE = true is being ignored
This programm correctly complains about "assigned but unused variable - p"
~~~ruby
#!/usr/bin/ruby -w
p=1
~~~
...
rovf (Ronald Fischer)
12:32 PM Misc #12004: Code of Conduct
Given this issue has been closed by Matz, is it possible to block further posts from all non-admins? Leaving it as a ... pat (Pat Allan)
07:26 AM Misc #12004: Code of Conduct
I think that this https://github.com/ContributorCovenant/contributor_covenant/issues/278 and how Coraline will reply ... Oceanomare (Oceano Mare)
10:00 AM Feature #12043: Add a method to NoMethodError that tells if private methods are callable at the time of
Nobuyoshi Nakada wrote:
> This feature is **only** for "did_you_mean" gem, so I think that any name is OK, including...
Eregon (Benoit Daloze)
09:31 AM Feature #12075: some container#nonempty?
Nobuyoshi Nakada wrote:
> https://github.com/ruby/ruby/compare/trunk...nobu:feature/12075-not
I like it!
Eregon (Benoit Daloze)
07:25 AM Feature #12075: some container#nonempty?
https://github.com/ruby/ruby/compare/trunk...nobu:feature/12075-not nobu (Nobuyoshi Nakada)
05:22 AM Feature #12075: some container#nonempty?
Nobuyoshi Nakada wrote:
> First, along this line, we'll need negative forms for all predicate methods.
>
> And I ...
phluid61 (Matthew Kerwin)
04:40 AM Feature #12075: some container#nonempty?
Or
```ruby
module Kernel
def !(*a)
a.empty? ? super() : !__send__(*a)
end
end
ary = nil; ary&.!:...
nobu (Nobuyoshi Nakada)
04:33 AM Feature #12075: some container#nonempty?
First, along this line, we'll need negative forms for all predicate methods.
And I think `nil.empty?` makes no sen...
nobu (Nobuyoshi Nakada)
09:17 AM Feature #12113 (Open): Global method inside Delegator causes NameError
~~~ruby
def some_func
puts '12'
end
class Klass < Delegator
def initialize(obj)
@obj = obj
end
...
oleg_antonyan (Oleg Antonyan)
05:40 AM Bug #9810 (Closed): Numeric#step behavior with mixed Float, String arguments inconsistent with documentation
Applied in changeset r53949.
----------
numeric.c: wrong type step should raise TypeError
* numeric.c (num_step_sca...
nobu (Nobuyoshi Nakada)
01:01 AM Bug #9810: Numeric#step behavior with mixed Float, String arguments inconsistent with documentation
[Developers' meeting log][1]
> This issue is because of invalid type, not mismatch the number of arguments.
> Compa...
nobu (Nobuyoshi Nakada)
03:26 AM Bug #12111 (Closed): [DOC] Small fix for extension.roc / extension.ja.rdoc
Applied in changeset r53947.
----------
* doc/extension.ja.rdoc: removed rendering error caused by editor specific
...
hsbt (Hiroshi SHIBATA)
02:24 AM Feature #9371 (Closed): Remove NQXML from xmlrpc/parser
Applied in changeset r53946.
----------
* lib/xmlrpc.rb: Removed references to NQXML. It's obsoleted parser.
[fix ...
hsbt (Hiroshi SHIBATA)
01:57 AM Bug #11969 (Closed): [PATCH] IRB: Final newline missing in truncated backtraces
Applied in changeset r53943.
----------
* lib/irb.rb: avoid to needless truncation when using back_trace_limit optio...
hsbt (Hiroshi SHIBATA)
 

Also available in: Atom