Skip to content

Latest commit

 

History

7 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This plugin provides sorting by fields to arrays and enumerable objects. By default it is applied to arrays. It can be included in any enumerable class.

It automatically handles nil values and sorting strings without case sensitivity.

Sort the values array by the value returned by the name attribute on each entry without case sentivity:

values.sort_by_field(:name)

Sort the values array by the name attribute on each entry with case sentivity:

values.sort_by_field(:name, :case_sensitive => true)

Sort the values array by the name attribute putting nil values last instead of first:

values.sort_by_field(:name, :nil_last => true)

Sort the values array by the name attribute and then by the count attribute:

values.sort_by_field(:name, :count)

Sort the values array by the name attribute in descending order:

values.sort_by_field("name desc")

Sort the values array by the name of the class of each entry:

values.sort_by_field("class.name")

or

values.sort_by_field([:class, :name])

About

No description, website, or topics provided.

Resources

Stars

20 stars

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages