Just for fun, I want to try to write this Ruby function more succinctly. I imagine it can be done, I'm just not knowledgeable enough with Ruby yet to know how. Any suggestions?
def tags
return ['Cancelled'] if cancelled?
tags = []
tags << 'Filled' if filled?
tags << 'In Progress' if in_progress?
tags
end