main
 1module NeighbourhoodsHelper
 2  def css_class_for(neighbourhood)
 3    case
 4    when neighbourhood.status.start_with?('Evac')
 5      "evac"
 6    when neighbourhood.status.start_with?('Part')
 7      "part"
 8    else
 9      "open"
10    end
11  end
12end