I am having problems with the model "Collection".
I'm using mongoid with mongodb and rails 3.2.
I have the problem when I try create a nested resource from collection with a select with simple_form sth like:
<%= f.input :collection_id, :collection => Collection.where(:user_id => current_user.id).order([:created_at, :desc]), :input_html => { :id => "m_collection_id" } %>
However with the other words for the model working fine.
My question is if it's possible create a model with the "Collection" word with ruby on rails 3.2, mongoid and mongodb.
Thank you very much!