CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 31 Jul 2025 22:36:47 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20091102014532
location: https://web.archive.org/web/20091102014532/https://github.com/jqr/version_sorter
server-timing: captures_list;dur=0.618091, exclusion.robots;dur=0.022536, exclusion.robots.policy;dur=0.010666, esindex;dur=0.012279, cdx.remote;dur=65.395651, LoadShardBlock;dur=387.475902, PetaboxLoader3.datanode;dur=161.597621, PetaboxLoader3.resolve;dur=60.275912
x-app-server: wwwb-app219
x-ts: 302
x-tr: 505
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app219; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Thu, 31 Jul 2025 22:36:48 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Mon, 02 Nov 2009 01:45:32 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "2169e91d2c3df6f544bb50afcfc6dde0"
x-archive-orig-x-runtime: 154ms
x-archive-orig-content-length: 22333
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 02 Nov 2009 01:45:32 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 25 Oct 2009 10:39:58 GMT", ; rel="prev memento"; datetime="Sun, 25 Oct 2009 10:39:58 GMT", ; rel="memento"; datetime="Mon, 02 Nov 2009 01:45:32 GMT", ; rel="next memento"; datetime="Sun, 14 Feb 2010 15:12:20 GMT", ; rel="last memento"; datetime="Sat, 26 Jul 2025 13:53:34 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: webgroup-20100504055825-00055/ARCHIVEIT-1147-WEEKLY-GSWWXU-20091102013921-00120-crawling04.us.archive.org.warc.gz
server-timing: captures_list;dur=0.656720, exclusion.robots;dur=0.027664, exclusion.robots.policy;dur=0.012897, esindex;dur=0.014508, cdx.remote;dur=18.786373, LoadShardBlock;dur=248.808609, PetaboxLoader3.datanode;dur=87.655930, PetaboxLoader3.resolve;dur=120.761422, load_resource;dur=108.163448
x-app-server: wwwb-app219
x-ts: 200
x-tr: 444
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
jqr's version_sorter at master - GitHub
Hi! jqr is using GitHub to share code with you!
But GitHub is more than just a place to share code. It's a place to keep tabs on your favorite developers and projects, easily contribute fixes and new features, and visualize what's going on inside your codebase!
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Fork of defunkt/version_sorter | |
Description: | edit |
Homepage: | edit |
Public Clone URL: |
git://github.com/jqr/version_sorter.git
Give this clone URL to anyone.
git clone git://github.com/jqr/version_sorter.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:jqr/version_sorter.git
|
name | age | message | |
---|---|---|---|
![]() |
README.markdown | Fri Oct 09 10:05:24 -0700 2009 | add tags example [defunkt] |
![]() |
tags.rb | Fri Oct 09 10:05:24 -0700 2009 | add tags example [defunkt] |
![]() |
tags.txt | Fri Oct 09 11:22:49 -0700 2009 | Adding a newline delimited tags file for human ... [jqr] |
![]() |
tags_without_X.X.X.txt | Fri Oct 09 11:23:12 -0700 2009 | Added array_sort_hash and array_sort_array that... [jqr] |
![]() |
version_sorter.rb | Fri Oct 09 15:03:48 -0700 2009 | Adding string based sorting methods that handle... [jqr] |
README.markdown
VersionSorter
This is not code I wrote. Just code I use.
require 'version_sorter'
versions = %w( 1.0.9 2.0 1.0.10 1.0.3 )
VersionSorter.rsort(versions) # => ["2.0", "1.0.10", "1.0.9", "1.0.3"]
VersionSorter.sort(versions) # => ["1.0.3", "1.0.9", "1.0.10", "2.0"]
Speed
Want to make it faster?
require 'tags'
VersionSorter.sort(@tags)
The @tags
array is YUI's tags, which they create on build.
This feature is coming soon. Sit tight!