[![Code Climate](https://codeclimate.com/github/panorama-ed/order_as_specified/badges/gpa.svg)](https://codeclimate.com/github/panorama-ed/order_as_specified) [![Test Coverage](https://codeclimate.com/github/panorama-ed/order_as_specified/badges/coverage.svg)](https://codeclimate.com/github/panorama-ed/order_as_specified) [![Build Status](https://travis-ci.org/panorama-ed/order_as_specified.svg)](https://travis-ci.org/panorama-ed/order_as_specified) [![Inline docs](http://inch-ci.org/github/panorama-ed/order_as_specified.png)](http://inch-ci.org/github/panorama-ed/order_as_specified) [![Gem Version](https://badge.fury.io/rb/order_as_specified.svg)](http://badge.fury.io/rb/order_as_specified) # OrderAsSpecified `OrderAsSpecified` adds the ability to query an `ActiveRecord` class for results from the database in an arbitrary order, without having to store anything extra in the database. It's as easy as: ```ruby class TestObject extend OrderAsSpecified end TestObject.order_as_specified(language: ["es", "en", "fr"]) => #, #, #, # ]> ``` ### Is this like ranked-model? Other gems like `ranked-model`, `acts_as_sortable`, etc. assume you want the same ordering each time, and store data to keep track of this in the database. They're great at what they do, but if your desired ordering changes, or if you don't always want an ordering, this gem is your friend. ## Installation Add this line to your application's Gemfile: ```ruby gem 'order_as_specified' ``` And then execute: $ bundle Or install it yourself as: $ gem install order_as_specified ## Usage Basic usage is simple: ```ruby class TestObject extend OrderAsSpecified end TestObject.order_as_specified(language: ["es", "en", "fr"]) => #, #, #, # ]> ``` This returns all `TestObject`s in the given language order. Note that this ordering is not possible with a simple `ORDER BY`. Magic! Like any other `ActiveRecord` relation, it can be chained: ```ruby TestObject. where(language: ["es", "en", "fr"]). order_as_specified(language: ["es", "en", "fr"]). limit(3) => #, #, # ]> ``` We can also use this when we want to sort by an attribute in another model: ```ruby TestObject. joins(:other_object). order_as_specified(other_objects: { id: [other1.id, other3.id, other2.id] }) ``` Neat, huh? In all cases, results with attribute values not in the given list will be sorted as though the attribute is `NULL` in a typical `ORDER BY`: ```ruby TestObject.order_as_specified(language: ["fr", "es"]) => #, #, #, # ]> ``` ## Documentation We have documentation on [RubyDoc](http://www.rubydoc.info/github/panorama-ed/order_as_specified/master). ## Contributing 1. Fork it (https://github.com/panorama-ed/order_as_specified/fork) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create a new Pull Request **Make sure your changes have appropriate tests (`bundle exec rspec`) and conform to the Rubocop style specified.** We use [overcommit](https://github.com/causes/overcommit) to enforce good code. ## License `OrderAsSpecified` is released under the [MIT License](https://github.com/panorama-ed/order_as_specified/blob/master/LICENSE.txt).