Created
January 14, 2012 01:51
-
-
Save vlandham/1609839 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% list = [ | |
"Sarang Sane, University of Kansas", | |
"Alessandro De Stefani, University of Kansas", | |
"Arindam Banerjee, University of Kansas", | |
"Jason Lutz, University of Nebraska - Lincoln", | |
"Luigi Ferraro, University of Nebraska - Lincoln", | |
"Kat Shultis, University of Nebraska - Lincoln" | |
] %> | |
<% sorted_list = list.sort {|a,b| a.split(" ")[0].downcase <=> b.split(" ")[0].downcase } %> | |
<ol> | |
<% sorted_list.each do |person| %> | |
<li><%= person %></li> | |
<% end %> | |
</ol> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment