Adds Mongoid support to sorted. Allows you to sort large (Mongoid) datasets over many pages, without losing state.
Add this line to your application's Gemfile:
gem 'sorted-mongoid'
And then execute:
$ bundle
Just like sorted, hopefully! Include it in your Gemfile and all your Mongoid models should have the sorted
method, eg:
@users = User.sorted(params[:sort], "email ASC").page(params[:page])
Use SQL ordering keywords, even though we're not in SQLLand anymore.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request