If you can access the id of each user by calling user.id, you could sort the array like this:
@users.sort!{|a,b| a.id <=> b.id }
If you only have the ids in a separate array from the objects you could do the following:
Zip the two arrays together, sort the resulting array on the ids, then collect the sorted users from the result.
users_ids = @users.zip(ids) # creates an array of smaller arrays each holding [user, id]
users_ids.sort!{|a,b| a[1] <=> b[1]} # sorts on the id in each sub-array
sorted_users = users_ids.collect{|item| item[0]} #grabs the users, leaving the ids behind
Take a glance at this: http://ariejan.net/2007/01/28/ruby-sort-an-array-of-objects-by-an-attribute