jonleighton (Jon Leighton)
- Login: jonleighton
- Email: j@jonathanleighton.com
- Registered on: 09/07/2011
- Last sign in: 05/02/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
12/14/2011
-
06:48 PM Ruby Bug #5761 (Closed): Array#flatten(N) calls to_ary on the (N+1)-level objects
- $ cat flatten.rb
class Foo
def respond_to?(name, include_private = true)
puts "respond_to?(#{name})"
super
end
def method_missing(name, *args)
puts "method_missing(#{name})"
super
end
end
puts "[[Fo...