graph_helper.rb 109 Bytes Edit Raw Blame History 1 2 3 4 5 module GraphHelper def join_with_space(ary) ary.collect{|r|r.name}.join(" ") unless ary.nil? end end