Is there a single Enumerable method that will accomplish this?
Enumerable
users.map { |user| [user.name, user.age] }.flatten #=> ["ben", 32, "chad", 50]
Indeed! flat_map to the rescue.
flat_map
users.flat_map { |user| [user.name, user.age] } #=> ["ben", 32, "chad", 50]