0x1eef (0x 1eef)
- Login: 0x1eef
- Registered on: 11/10/2022
- Last sign in: 11/20/2022
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 1 | 2 |
Activity
09/19/2023
-
01:32 AM Ruby Revision e77c766b (git): [ruby/net-http] No longer neccessary to call `String#freeze` on string literals.
- See #144
https://github.com/ruby/net-http/commit/5a986c13d3
11/20/2022
-
03:08 AM Ruby Feature #19137 (Open): Numbered parameters are not made available to IRB.
- Hello !
It does not look like numbered parameters are available through the Binding that's used by IRB.
```ruby
# repl.rb
[1,2,3].each do
binding.irb
end
```
```
$ irb repl.rb
irb(main):001:0> puts _...
11/10/2022
-
03:09 PM Ruby Feature #19118: Allow numbered arguments to be inherited by block
Alright - no worries. Thank you!-
12:21 PM Ruby Feature #19118 (Closed): Allow numbered arguments to be inherited by block
- Each these examples does not work as I would have hoped - each of them evaluates to puts(nil).
```ruby
def foo
yield
end
[1,2,3].each do
Process.wait fork { puts(_1) }
end
[1,2,3].each do
Thread.new { puts(_1) }.join
e...