1
vote
1answer
39 views

ActiveSupport::Concern and extending mongoid model

I am using mongoid with rails 3 and have come lately to a very tough problem and I need an advice. I am working on a CMS and one of the ideas was that CMS would provide some basic models definitions ...
1
vote
1answer
36 views

Make item “Private” in rails

App Attributes: Rails 3.2, Mongoid, Devise, Elasticsearch Basic Structure: User has a Post Post can be seen by other users Situation: A User wants to remove the post from being view-able by ...
1
vote
1answer
39 views

Execute method on mongoid scope chain

I need to take some random documents using Rails and MongoId. Since I plan to have very large collections I decided to put a 'random' field in each document and to select documents using that field. I ...
1
vote
1answer
55 views

testing field type a model in mongoid

i use ruby on rails. also i use minitest framework for testing and mongoid for database. i want to write a model test. my model is below: class Identity include Mongoid::Document include ...
1
vote
1answer
191 views

Create mongoid model with references

I am new at working with mongoID. I want to create model which is referenced to another: class User include Mongoid::Document field :name, :type => String belongs_to :post end class ...
1
vote
1answer
55 views

Rails Mongoid model/view calculation

I need to do some calculation through a view on a few models. Example: class Teacher include Mongoid::Document has_many :students end class Student include Mongoid::Document belogns_to ...
0
votes
1answer
69 views

MongoID + Rails with Inheritence

Hi As I read in manual inheritance for models based on mongo is available. But if I inheritence a model, when saving, he goes to document named by inheritence root name. i.e. class Base include ...
2
votes
1answer
624 views

In Mongoid, how do I create an array or references with quantities

I have a class Item include Mongoid::Document field name, type: String end and a class Pack include Mongoid::Document end Each Pack can include different Items in different quantities. I ...
0
votes
0answers
116 views

Auto increment an id over multiple models (model-in-between?)

I am writing my first rails app that's based on mongoid and have a question about how to best implement a certain situation. I have multiple models that share a id field. That id field is used within ...
0
votes
1answer
148 views

Mongoid Relations (Custom accessors)

I am using Mongoid in my Rails app. I have a User model and I also have a Role model (think Admin, guest etc). I want to setup my Mongoid associations such that the following code will be possible: ...
0
votes
2answers
218 views

Ruby on rails access to model information to an another model

I have my first model Contact with the field :email and I need this same field :email in my model Customer with the value of the field :email which is in my model Contact. I use mongoID for ORM so ...
1
vote
1answer
118 views

Find all items through two has_many assocaitions

Lets say I have a Rails app that is modelled as follows: There is a HOUSE class; it has_many ROOMS There is a ROOM class; it belongs_to a HOUSE and has_many FURNISHINGS There is a FURNISHING class; ...
1
vote
0answers
372 views

Rails/Mongoid dynamic model

I'm working on a CMDB like application in RoR, having a root "node" model whose submodels like "server", "firewall", "router", ... will inherit, adding their own specific fields. Because each ...
0
votes
3answers
99 views

Rails: Set creator of Entry

Currently, I can add the creator_id like this in my controller: @entry = Entry.new(params[:entry].merge(:creator => current_user._id)) If this is my model: class Entry include ...
2
votes
1answer
280 views

Rails: how do I use question marks in a model?

We have a field in our mongodb database called "failed?", including the question mark. Sometimes when I access that field, I get the value in the database, and sometimes I get null. I'm looking to ...
0
votes
1answer
176 views

Associations with Mongoid

I have three simple models - Car, Details and Details2. Car have lot of Details and Details have lot of Details2. With MySQL and ActiveRecord I will set the associations like: class Car has_many ...
3
votes
2answers
263 views

Mongoid document persistence after find

I having trouble persisting my documents in mongoid. I have the following code fragment in my controller: params[:user][:residence_attributes][:locations_attributes].each do ...
0
votes
2answers
427 views

Update the parent model on child after_save, using Mongo

A User has many Posts and a Post belongs_to a User. Both have a location. I'd like to store the location for each Post and update the User location with the most recent Post location. Is after_save ...
0
votes
1answer
237 views

how to have rail 3 model to_json, return only the date and not time?

I have a rails 3 model with a Date field. when i render the model as json, the date field is returning the date and time. It should only return the date, because this is a Date field not a DateTime ...
1
vote
3answers
771 views

How do I store radio button selection in my DB with Rails 3?

I am using Rails 3 and Mongoid. I am able to store text fields and select fields but can't seen to figuer out how to store a radio option in the DB whe the form is submitted. Here is my code... ...
2
votes
1answer
2k views

mongoid ordering problem

I have been using mongoid for storing data. I have a scenario where I have to sort the parents according the number of dependents they have. My model is simple: Parent model references_many ...
0
votes
1answer
210 views

Defining models with Mongoid for this database structure

Hey I'm trying to build a rails 3 app with Mongoid (for MongoDB). What I'm now trying to do: Languages: id (automatically created, right?) name (e.g. English) code (e.g. en_US) Languages_Texts: ...