In this example I’ll show you how easy it is to sort an array of (the same kind of) objects by an attribute. Let’s say you have an array of User objects that have the attributes ‘name’ and ‘login_count’. First, find all users.
d919902ae5ceb908e9c910963b35d062000
Now, we have to sort this array by ‘name’. Since we don’t know if any user used capitals in his name or not, we use ‘downcase’ to sort without case sensitivity.
A small not. ’sort’ returns a new array and leaves the original unchanged. You may want to just reorder the @users array, so use the ’sort!’ method. The ‘!’ indicates it’s a destructive method. It will overwrite the current @users array with the new sorting.
d919902ae5ceb908e9c910963b35d062001
That’s all! Since strings are comparable, this will sort you user objects alphabetically by name. Want to sort on login_count instead?
d919902ae5ceb908e9c910963b35d062002
So, now you can easily sort any object in an array just like you want it too!