Hello! I use mongodb 1.6.3 + mongoid 2.0.0.beta.20
I have models:
User
include Mongoid::Document
embeds_many :nodes
Node
include Mongoid::Document
include Mongoid::Timestamps
include Mongoid::Taggable
embedded_in :user, :inverse_of => :nodes
And i see this error:
Database command 'mapreduce' failed: {"errmsg"=>"ns doesn't exist", "ok"=>0.0} when try:
User.first.nodes.create(:node_body => "first", :tags => "tag1, tag2, tag3")
Is this 'mongoid_taggable' bug or my fail?