How to get files in last modified time order in ruby? I was able to smash my keyboard enough to achieve this:
file_info = Hash[*Dir.glob(\"*\").collect {|fil
Dir.glob("*").sort {|a,b| File.ctime(a) <=> File.ctime(b) }