I'm trying to sort a list of files by date. I currently have a string array of file paths and I need to sort them by date modified. I've tried to the following, but with little luck. I don't really understand how the sort_by method works either.
@files.sort_by {|filename| File.mtime(filename) }
EDIT
I've also tried converting them to dates and sorting them.
@files.sort_by {|filename| DateTime.parse(File.mtime(filename).to_s) }
Thanks!