acts_as_list_mongoid
acts_as_list_mongoid copied to clipboard
Make your Mongoid model acts as a list
Hi. Since on our project we're using Mongoid 2.4, we're having problems with current version gem's requirement of mongoid 3.0. I've noticed that Mongoid 2.0 was allowed on a prior...
mongoid_embedded_helper depends on bson which is not used by mongoid 3.x, instead it uses its own MongoDB ruby driver called moped.
It would be great if all that was needed was ``` include Mongoid::ActsAsList ``` Then it'd automatically create a position field, and initialize the code without having to call `field`...