machinist_mongo icon indicating copy to clipboard operation
machinist_mongo copied to clipboard

Machinist adapters for MongoDB ORMs.

Results 12 machinist_mongo issues
Sort by recently updated
recently updated
newest added

Hi, Added this functionality: (post = Post.make).comments.make.post.should == post Cheers, Khoan.

Stops me seeing deprecation warnings whenever I run specs or cukes.

Mongoid (at least 2.0.1) does not return a classes association with the #associations method. It does with the #extension method. I am not exactly sure why, because it seems that...

I've created blueprint with Product and Item following these models class Item include MongoMapper::EmbeddedDocument belongs_to :product end class Product include MongoMapper::Document many :items end And blueprints.rb Item.blueprint do product {...

# in below example the user assotiation does not work # have to specify user { User.make } which is hacky Convo.blueprint do title {"title#{sn}"} privacy {'public'} user end Potentially...

If you have a model that is embedded in a parent model, mongoid will let you call `save` and `create` on it, as long as you have specified the parent....

When defining references associations, using "association.make" does not seem to provide the proxy as the reference object Example (Account has the references_many) ``` Account.blueprint do ... end Page.blueprint do account...

To make macjomost_mongo work with both ActiveRecord, Mongoid at the same time i have to put the following code in my blueprints.rb and then the spec runs only with spork,...

machinist_mongo (1.1.1) mongoid (2.0.0.beta.20 4ef5fd0) mongo (1.1.5) rails 3.0.1 Code: https://gist.github.com/776097 If I create @radar_traffic it always has created_at = Time.now not Time.new(2008). When I add attr_accessible :created_at to my...