General

Profile

floehopper (James Mead)

Issues

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

Like

Activity

03/18/2017

12:50 PM Ruby master Bug #13276: Dir.glob returns empty array when OS has no more file handles (expected exception)
Bump? floehopper (James Mead)

03/03/2017

06:32 PM Ruby master Bug #13276 (Closed): Dir.glob returns empty array when OS has no more file handles (expected exception)
The following terminal session demonstrates how `Dir.glob` returns an empty array when the OS has run out of file han... floehopper (James Mead)

11/01/2016

08:29 PM Ruby master Bug #12832: Calling Object#method hangs for private method defined on module then made public once it's been used to extend class
@George: Thanks for explaining. Makes sense. floehopper (James Mead)
12:33 PM Ruby master Bug #12832: Calling Object#method hangs for private method defined on module then made public once it's been used to extend class
@nobu: Is it possible there is a separate problem with the code such that interrupt signals are incorrectly being ign... floehopper (James Mead)
09:34 AM Ruby master Bug #12832: Calling Object#method hangs for private method defined on module then made public once it's been used to extend class
@nobu: Thank you for fixing this. Is it expected that a bug like this would cause the interpreter not to accept inter... floehopper (James Mead)

10/27/2016

02:18 PM Ruby master Bug #12876 (Closed): Calling new hangs Ruby when class prepends an empty module and makes initialize method public
```ruby
module Foo
end
class Bar
prepend Foo
public :initialize
end
p Bar.new # => hangs
```
## ...
floehopper (James Mead)

10/12/2016

02:22 PM Ruby master Bug #12832: Calling Object#method hangs for private method defined on module then made public once it's been used to extend class
In case it helps, it seems as if Ruby v2.3 is "more" broken than earlier versions. If I remove the `Bar.method(:foo)`... floehopper (James Mead)

10/11/2016

06:45 PM Ruby master Bug #12832 (Closed): Calling Object#method hangs for private method defined on module then made public once it's been used to extend class
~~~ ruby
module Foo
private
def foo
"foo"
end
end
class Bar
extend Foo
class << self
...
floehopper (James Mead)

Also available in: Atom