have a ton of places I need to add
if this_flag return end
can that be done on one line with ruby?
Ruby always returns the last thing... Why not just structure your code differently?
def returner(test) "success" if test end
Whatever you've done last will return. I love Ruby.