NAME
Mongoose::Document - a Mongo document role
VERSION
version 0.01_02
SYNOPSIS
package Person;
use Moose;
with 'Mongoose::Document';
has 'name' => ( is=>'rw', isa=>'Str', required=>1 );
SEE ALSO
Read the Mongoose Mongoose::Intro or Mongoose::Cookbook.