nobu (Nobuyoshi Nakada)
- Login: nobu
- Email: nobu@ruby-lang.org
- Registered on: 04/27/2008
- Last sign in: 12/03/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 44 | 859 | 903 |
| Reported issues | 23 | 288 | 311 |
Projects
| Project | Roles | Registered on |
|---|---|---|
| Ruby | Committer, Contributor | 04/27/2008 |
Activity
12/06/2025
-
03:44 PM Ruby Revision 7319db44 (git): [ruby/pathname] Define `to_path` alias directly
- The constant `TO_PATH` was defined for 1.9 compatibility but the code
for it was dropped 10 years ago.
https://github.com/ruby/pathname/commit/95ad4ceb19 -
03:44 PM Ruby Revision b675deee (git): [ruby/pathname] Use `File.path` for conversion to path name
- This method has been defined since 1.9, as the standard conversion
procedure.
https://github.com/ruby/pathname/commit/8f582dc65d -
03:44 PM Ruby Revision da3b7d5e (git): [ruby/pathname] Freeze and hide internal constants
- https://github.com/ruby/pathname/commit/60f5d58d73
-
03:38 PM Ruby Revision 240afe50 (git): Suppress noisy outputs
- Fix up ruby/ruby#14700.
-
10:32 AM Ruby Revision f4f5f0a0 (git): Add error case tests for `File.path`
- - for non-String argument
- for NUL-contained argument
- for ASCII-incompatible argument -
05:39 AM Ruby Revision d490247d (git): [DOC] Link global variables to command line options
12/05/2025
-
01:46 PM Ruby Bug #21669: Thoroughly implement void value expression check
- Earlopain (Earlopain _) wrote in #note-6:
> I have an implementation in https://github.com/ruby/prism/pull/3728 (maybe needs more tests)
It doesn't reject the following cases.
```ruby
x = begin
return
"NG"
end
# Expected:... -
11:08 AM Ruby Bug #21669: Thoroughly implement void value expression check
- Sorry, I've missed this issue.
It is done to fix parse.y for 1 and 2.
I think 1 is OK, and probably no problem in practice.
But 2 is intentionally passed, IIRC, and bootraptest has such code.
```ruby
#1526 test_syntax.rb:572:
... -
07:47 AM Ruby Revision 1cad20e2 (git): [DOC] Describe `$F`
- This variation is used when `-a` option is given.
-
07:31 AM Ruby Revision 1e7373ef (git): [DOC] Describe the global variables set by command line options
- These variables are set by command line options, but it is deprecated
to assign them any value other than nil in ruby code.