From: "bitsweat (Jeremy Kemper)" Date: 2012-12-31T10:46:09+09:00 Subject: [ruby-core:51203] [ruby-trunk - Bug #5759] flatten calls to_ary on everything Issue #5759 has been updated by bitsweat (Jeremy Kemper). > class Baz; def respond_to?(s, x) super unless s == :to_ary end end => nil > [Baz.new].flatten => [#] ---------------------------------------- Bug #5759: flatten calls to_ary on everything https://bugs.ruby-lang.org/issues/5759#change-35162 Author: trans (Thomas Sawyer) Status: Rejected Priority: Normal Assignee: nobu (Nobuyoshi Nakada) Category: Target version: 1.9.3 ruby -v: ruby 1.9.3dev (2011-09-23 revision 33323) [x86_64-linux] I often ensure that I have an array by doing: def foo=(x) @foo = [x].flatten end But this has turned into a problem as of late, as it seems #flatten is calling #to_ary on every element in the array, and apparently catching the error raised if #to_ary isn't defined for that object. But that causes potential issues with objects that use #method_missing. I think #flatten should use `respond_to?(:to_ary)` to make sure an object can handle it before actually calling it. -- http://bugs.ruby-lang.org/