Ruby Case Silently Fails - Fix

This is a crazy bug:

when “x”,
  method
end

The above will fail silently as it will never evaluate properly. You won’t get any error, it is just borked.

Remove the comma.

when “x”
  method
end

That will work.