nobu (Nobuyoshi Nakada)
- Login: nobu
- Email: nobu@ruby-lang.org
- Registered on: 04/27/2008
- Last sign in: 12/20/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 44 | 859 | 903 |
| Reported issues | 25 | 292 | 317 |
Projects
| Project | Roles | Registered on |
|---|---|---|
| Ruby | Committer, Contributor | 04/27/2008 |
Activity
01/02/2026
-
04:13 AM Ruby Revision dd34d627 (git): Extract git version only
- The version message may contain other info such as the distribution.
e.g.:
```console
$ /usr/bin/git --version
git version 2.50.1 (Apple Git-155)
``` -
02:40 AM Ruby Revision 0e9d6989 (git): Prefer dedicated assertions
-
01:17 AM Ruby Bug #21817 (Assigned): Ruby::Box crashes with refinement + bind_call + Symbol#to_proc combination
01/01/2026
12/31/2025
-
02:56 PM Ruby Revision b27d9353 (git): Use `is_obj_encoding` instead of `is_data_encoding`
- The argument to `is_data_encoding` is assumed to be `T_DATA`.
-
12:44 PM Ruby Revision 99249cc5 (git): [ruby/json] Fix non-portable code
- A plain `char` may be `signed` or `unsigned` depending on the
implementation. Also, bitwise ORing of `signed` values is not
guaranteed to be `signed`. To ensure portability, should logical-OR
each comparison, but casting to `signed c... -
08:54 AM Ruby Revision 094145fb (git): [DOC] Move typed-data related macros
- The flags for `rb_data_type_t::flags` are public constants for
defining `rb_data_type_t`. The embedded data flag and mask are
internal implementation detail. -
05:13 AM Ruby Bug #21816: iseq code_location of proc changed
- Probably it's because of commit:c970d2941d56a862bb9bb3b808cb588c2982f436.
That is the indent is not related, but the behavior change. -
02:29 AM Ruby Revision d95bebe0 (git): Make `RTYPEDDATA_EMBEDDABLE_P` internal-use only
- It should not be exposed because it is so implementation specific that
it is only used in gc.c even within the entire Ruby source tree. -
02:27 AM Ruby Revision c352808f (git): Introduce typed-data embeddable predicate macros
- The combination of `&` and `&&` is confusing.