29 30 31 32 33 34 35
# File 'lib/material/concerns/collection.rb', line 29 def to_ary ary = super return ary if ary.empty? material_class = ary.first.try(:conjugate, Material::Base) material_class.nil? ? ary : ary.map(&material_class.method(:new)) end