summaryrefslogtreecommitdiff
path: root/app/helpers/graph_helper.rb
blob: ba8c68a1ce02c9e77b768a1e5c365dabdd5abc69 (plain)
1
2
3
4
5
module GraphHelper
  def join_with_space(ary)
    ary.collect{|r|r.name}.join(" ") unless ary.nil?
  end
end