This post is close:
Rails: select unique values from a column
Model.uniq.pluck(:rating)
works great except in my case my column has an array in it so I get something like this:
[["guest"], ["engineer", "manager"], ["engineer"], ["admin"], ["operations"], ["operator"], ["operator", "manager"]]
I would like these reduced down to the simplest list (in alphabetical order while we are at it).