🚀 DAY 3 OF LAUNCH WEEK:Announcing Bun and vlt Support in Socket.Learn more →
Socket
Book a DemoInstallSign in
Socket

sort_authority

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sort_authority

bundlerRubygems
Version
0.0.2
Version published
Maintainers
1
Created
Source

sort_authority

Natural order string comparison using natsort by Martin Pool.

Getting Started

If you're using Bundler, you can add sort_authority to your Gemfile:

gem 'sort_authority'

Or manually install the gem using:

gem install sort_authority

Usage

# bad
['9 Main Street', '10 Main Street'].sort
# => ['10 Main Street', '9 Main Street']

# good!
require 'sort_authority/ext/enumerable'
['9 Main Street', '10 Main Street'].natural_sort
# => ['9 Main Street', '10 Main Street']

Benchmarks

Comparison of sorting an array ['x1'] * 100_000 with naturalsort, naturally, natcmp, and sensible_sort.

                 user     system      total        real
sort             0.000000   0.000000   0.000000 (  0.001758)
strnatcmp.c      0.030000   0.000000   0.030000 (  0.029083)
naturalsort gem  0.060000   0.000000   0.060000 (  0.061879)
naturally gem    0.990000   0.020000   1.010000 (  1.009634)
natcmp gem       1.140000   0.010000   1.150000 (  1.141950)
sensible_sort    2.280000   0.000000   2.280000 (  2.286274)

Contributing

Fork, branch, and pull-request.

FAQs

Package last updated on 26 Dec 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts