Sorting by multiple columns in Ruby: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

8 October 2009

  • curprev 23:1823:18, 8 October 2009Brianegge talk contribsm 459 bytes +459 Created page with 'In Ruby, it's quite easy to sort an array by a single column. For example: <geshi lang="ruby> people.sort_by { |p| p.lastname } </geshi> However, it's not clear how to easily …'