CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 31 Jul 2025 23:53:09 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20091013104117
location: https://web.archive.org/web/20091013104117/https://github.com/defunkt/version_sorter
server-timing: captures_list;dur=0.643620, exclusion.robots;dur=0.023984, exclusion.robots.policy;dur=0.010915, esindex;dur=0.013933, cdx.remote;dur=7.172577, LoadShardBlock;dur=161.249714, PetaboxLoader3.datanode;dur=49.896463, PetaboxLoader3.resolve;dur=49.300022
x-app-server: wwwb-app212
x-ts: 302
x-tr: 202
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app212; 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 23:53:10 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 13 Oct 2009 10:41:15 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "f2d7dea26f632dbcf0c402b4e5fdc541"
x-archive-orig-x-runtime: 118ms
x-archive-orig-content-length: 20546
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: Tue, 13 Oct 2009 10:41:17 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 12 Oct 2009 04:09:26 GMT", ; rel="prev memento"; datetime="Mon, 12 Oct 2009 04:09:26 GMT", ; rel="memento"; datetime="Tue, 13 Oct 2009 10:41:17 GMT", ; rel="next memento"; datetime="Sun, 14 Feb 2010 15:13:48 GMT", ; rel="last memento"; datetime="Sat, 26 Jul 2025 13:53:33 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: 52_12_20091013092618_crawl101-c/52_12_20091013101600_crawl101.arc.gz
server-timing: captures_list;dur=0.438483, exclusion.robots;dur=0.016724, exclusion.robots.policy;dur=0.008347, esindex;dur=0.010024, cdx.remote;dur=25.693462, LoadShardBlock;dur=256.536940, PetaboxLoader3.datanode;dur=83.548792, PetaboxLoader3.resolve;dur=301.987831, load_resource;dur=170.686818
x-app-server: wwwb-app212
x-ts: 200
x-tr: 503
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
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
defunkt's version_sorter at master - GitHub
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 (

Description: | edit |
Homepage: | edit |
Public Clone URL: |
git://github.com/defunkt/version_sorter.git
Give this clone URL to anyone.
git clone git://github.com/defunkt/version_sorter.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:defunkt/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] |
![]() |
version_sorter.rb | Fri Oct 09 12:32:25 -0700 2009 | Adding basic benchmarking. [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!