Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > setライブラリ > Setクラス > to_a
to_a -> Array
self を配列に変換します。要素の順序は不定です。
require 'set' set = Set['hello', 'world'] p set.to_a #=> ["hello", "world"]