Skip to content

Instantly share code, notes, and snippets.

@tristanm
Created May 26, 2013 20:49
Show Gist options
  • Save tristanm/5653974 to your computer and use it in GitHub Desktop.
Save tristanm/5653974 to your computer and use it in GitHub Desktop.
Sorts file names by a numeric suffix
files.sort! { |a, b|
[a, b]
.map { |s| s[/_(\d+).jpg/, 1].to_i }
.inject(:"<=>")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment