General

Profile

gotoken (Kentaro Goto)

  • Login: gotoken
  • Email: gotoken@gmail.com
  • Registered on: 07/22/2008
  • Last sign in: 05/09/2025

Issues

open closed Total
Assigned issues 0 1 1
Reported issues 1 2 3

Projects

Project Roles Registered on
Ruby Committer 11/05/2008

Activity

12/25/2021

02:22 PM Ruby Feature #17524: resolv: add some more characters in IPv6 link local zone id
With ruby 3.1.0 on my LXC box, this is the only problem reported as a failure with `make test-all`.
It would be helpful if you could merge https://github.com/ruby/resolv/pull/2.
gotoken (Kentaro Goto)

12/13/2021

09:08 AM Ruby Revision 914563ae (git): NEWS.md: `ruby -run -e httpd` displays URLs to access [Feature #17847]
gotoken (Kentaro Goto)

08/23/2021

01:59 AM Ruby Feature #17847 (Closed): `ruby -run -e httpd` displays URL
> Alternatively this could be part of the default output when starting WEBrick,
That's a good idea. However, since the definition of the port number output is in the HTTPServer superclass WEBrick::GenericServer, the amount of change i...
gotoken (Kentaro Goto)

08/18/2021

01:21 PM Ruby Feature #12075: some container#nonempty?
Boolean `size?` looks good to me. I vote for it.
My first choice was `nonempty?` because this is very common word in popular algorithm text books, e.g., Knuth, Cormen, Sedgewick, Tarjan, Aho, Hopcroft, etc.
However some people pointed ...
gotoken (Kentaro Goto)

08/14/2021

06:12 AM Ruby Feature #16428: Add Array#uniq?, Enumerable#uniq?
Recently I read similar topic again elsewhere. They pointed
* in most cases we have something to do on each duplicate element if any duplicate detected, e.g., reporting all duplicate elements as an error message
* `uniq?` looks slightly...
gotoken (Kentaro Goto)

05/03/2021

12:56 PM Ruby Feature #17847 (Closed): `ruby -run -e httpd` displays URL
The current version of un.rb `httpd` shows port number only:
```
$ ruby -run -e httpd
[2021-05-03 21:55:09] INFO WEBrick 1.7.0
[2021-05-03 21:55:09] INFO ruby 3.1.0 (2021-05-03) [x86_64-linux]
[2021-05-03 21:55:09] INFO WEBrick...
gotoken (Kentaro Goto)

11/14/2020

01:41 AM Ruby Bug #17318: Raising float to the power of other issue
That depends on your purpose or background of the problem. In non-math situations, `power(a, b)` should not return any ordinary number for given `a`<0 where `power(a, b)` stands for "`a` to the power of `b`" over real, just identical to ... gotoken (Kentaro Goto)

02/04/2020

06:18 AM Ruby Bug #16607 (Closed): retried require does not raise Exception even if a library has SyntaxError
From shell:
```
% echo "class C" > c.rb
% ruby -e 'begin p require "./c" ; rescue SyntaxError; end; p require "./c"; C'
```
**expected result:** SyntaxError
**2.7 and current master output:**
```
false
Traceback (most rece...
gotoken (Kentaro Goto)

08/27/2018

06:31 AM Ruby Bug #13671: Regexp with lookbehind and case-insensitivity raises RegexpError only on strings with certain characters
Thanks shyouhei for your pointing out.
I imagine another Rexexp option, say `//I`, which is almost the same as `//i` except for never-applying SpecialCasing mapping.
This change extends Unicode matching indeed but does not introduc...
gotoken (Kentaro Goto)
05:44 AM Ruby Bug #13671: Regexp with lookbehind and case-insensitivity raises RegexpError only on strings with certain characters
Thanks znz. The workaround is helpful. And I understood what was happened.
https://github.com/k-takata/Onigmo/issues/92#issuecomment-373981492 shows how some combinations of letters are variable length.
For example, `"ss"` and `"st"`...
gotoken (Kentaro Goto)

Also available in: Atom