Here I am getting values from my model and I am putting it as an instance variable in my controller:
@users = User.where(:approved => true, :enabled => true)
now I want @users to behave as an array so that I can perform the following operation:
@users = @users | current_user
i.e an array union. any pointers ?