michel.boaventura (Michel Boaventura)
- Login: michel.boaventura
- Email: michel.boaventura@gmail.com
- Registered on: 09/16/2014
- Last sign in: 08/29/2023
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
02/23/2016
-
01:29 PM Ruby Bug #12098: Accessing a two level hash with invalid keys ignores the right side of expression
- Nobuyoshi Nakada wrote:
> Fixed by r53485.
Thank you! I should have tested against master. Sorry about that :)
02/22/2016
-
12:34 AM Ruby Bug #12098 (Closed): Accessing a two level hash with invalid keys ignores the right side of expression
- Ruby 2.3 has a strange issue with hashes:
On Ruby 2.2:
~~~
irb(main):001:0> foo = {}
=> {}
irb(main):002:0> foo[:bla][:ble] = anything really
NameError: undefined local variable or method `really' for main:Object
from ...
09/16/2014
-
01:49 AM Ruby Bug #10244 (Third Party's Issue): Garbage Collector not being triggered
- Hi all,
I'm trying to understand why this simple script doesn't trigger a single run of the GC and eats all memory:
```Ruby
require 'gdk3'
loop do
Gdk::Pixbuf.new('foo.png')
end
```
Changing it just a little to print ``...