Mongoid is an Object-Document-Mapper (ODM) for MongoDB written in Ruby.

learn more… | top users | synonyms

0
votes
0answers
36 views

Remove Redundant fields in two associated Mongoid Models

In my omniauth & omniauth-identity based app I came across the follwoing issue: There are three tables that manage Userdata: # Stores User data _not_ authentication data class User include ...
0
votes
0answers
40 views

mongoid has_many through custom finder

I'd like to build a model hierarchy using Mongoid. The has_many helpers is very useful for that. However I want to build such a relation through another match than the id (as I see it the has many ...
0
votes
0answers
47 views

Rolify mongoid remove_role

I use rolify with mongoid to persist roles for users. If I want to add a role to user I just do it by add_role(:role) but if I want to remove role, I try to remove_role(:role) that doesn't do ...
0
votes
2answers
44 views

Order by money amount in mongoid

I'm having Products with embedded Listings. As a result, I would like to have a list ordered on price. I'm using mongoid & Money gem. However, I later add newly created listings (from external ...
0
votes
1answer
92 views

Mongoid field type: Moped::BSON::ObjectId with rabl

Scenario: Rails + Mongoid + Rabl I have a classes like class User has_many :cards field :name and class Card belongs_to :user field :anotheruser, type:Moped::BSON::ObjectId ...
1
vote
1answer
61 views

Optimize query mongodb/mongoid

class Job field :occupation, :type => String field :experience, :type => String end In my api file: get :searches do Cv.search({query: "*#{params[:q]}*"}).map{ |cv| {id: cv.id, text: ...
0
votes
2answers
64 views

How to get the schema of a MongoDB database with Rails

I adopted a project that includes MongoDB and Mongoid. I liked the way you can check out the schema design of the database in the schema.rb with ActiveRecord or with the Annotate gem. How can I ...
1
vote
0answers
40 views

Mongoid presence_of embedded document and destroy embedded

I have some mongoid document like class Firm include Mongoid::Document embeds_many :offices validates_presence_of :offices end At least one office must be present. It works. However when ...
1
vote
1answer
174 views

Rails - Mongoid in production, rake command error:

My mongoid.yml: production: sessions: default: database: kvallspressen_production hosts: - localhost:27017 options: options: development: # Configure available ...
2
votes
1answer
90 views

Mongodb aggregation framework project with conditions

I have a collection of book keeping entries, that look like this: { _id: 5141aff1a1d24c991a000002, date: 2012-02-23 00:00:00 UTC, details: "sdfd", value: 250, clinic_id: ...
0
votes
1answer
80 views

Querying an array field that contains hashes in mongoid

I have a model like this class User include Mongoid::Document field :c, as: :categories, type: Array end and I am storing information on it like this: a = UserCheckin.new a.c = [{id: ...
0
votes
1answer
55 views

Mongoid multiple has_one relations

I struggling to get these relationships to work. I have the following class FlowContainer class FlowContainer include Mongoid::Document has_one :production_flow, class_name: Flow has_one ...
2
votes
1answer
122 views

Return alias field via json using mongoid

I am using mongoid(2.6.0) with its alias and this is how my model field looks like class Place include Mongoid::Document field :n, :as => :name, :type => String .... Now I have a ...
0
votes
0answers
21 views

What is the correct way to chain map_reduce calls in Mongoid?

I have an Element model that belongs to User. I am trying to calculate the following hash: how many users have element count of 1, 2, 3, etc. The approach I take is to first generate a hash of {user ...
0
votes
0answers
43 views

mongoid embeds_many how rename association

In rails app I have a model which use mogoid to store data there is couple associations: module Profile class ProviderData include Mongoid::Document include Mongoid::Timestamps ...
0
votes
1answer
54 views

Delayed Job just not working

I am building an application where at some point I need to sync a bunch of data from fb with my database, so I am (attemtping) to use Delayed Job to push this into the background. Here is what part ...
0
votes
0answers
88 views

Mongoid: Create embedded documents with a JSON POST request

I am pretty new to Rails and Mongoid and need some help regarding embedded documents. I am using Rails 3.2.12 and Mongoid 3.0.2. I am trying to update an embedded document with a JSON POST. That is, ...
0
votes
0answers
125 views

Mongoid Rspec and Capybara : Document(s) not found for embedded documents

Here is a strange behavior when testing a simple CRUD interface for embedded documents using rspec and capybara. The embedded documents are not retrieved in database through the Show action of the ...
1
vote
0answers
148 views

Moped::Errors::OperationFailure failed with error "no such cmd

I recently upgraded from mongoid 2.0.2 to mongoid 3 with rails 3.2.12 and ruby 1.9.3 . Following issue comes when save command excutes => @new_node.save Moped::Errors::OperationFailure (The ...
0
votes
0answers
41 views

Saving data in an ActiveRecord Model from a Mongoid Model

I have the following code that gets run every after a Contact object is saved: def create_or_update_user user = User.find_by_email(:email, email) if user user.update_attributes(title: ...
0
votes
1answer
131 views

Using NestedSortable with Ancestry gem and Mongoid

trying to incorporate nested sortable into my rails app. I'm using Mongoid and the Ancestry gem, and I'm trying to make a page that updates the parent_id of a category on drag and drop with ...
0
votes
1answer
112 views

Mongoid: has_many relation with alias

BACKGROUND: I have a Team model which has_many Players, which allows for one to call @team.players and receive a Mongoid::Relations::Targets::Enumerable list of Players back. OBJECTIVE: I'd like ...
0
votes
0answers
24 views

Validate uniqueness of a triplet in activerecord

I am trying to implement a validation of uniqueness for ActiveRecord (with Mongoid). I want to have uniqueness of a triplet, ie (field1, field2, field3) should be unique. I have try something like ...
2
votes
1answer
89 views

Mongoid + ActiveModel validation + I18n, not properly translating attributes

I am trying to internationalize the attributes of my Booking model From my fr.yml : attributes: &attributes booking: first_name: 'Prénom' last_name: 'Nom' email: "Email" ...
0
votes
1answer
169 views

Mongoid find embedded document

I'm trying to search for an embedded document by its id, and return it. This is possible, but only, as far as I see, by using mongo to find the document which embeds it, and then searching that ...
0
votes
1answer
60 views

How to prevent multiple DB roundtrips for parents of has_many relations

I'm likely missing something here, but it seems like this is a performance oversight. I first noticed this when looking at the query logs of Errbit and noticing hundreds of queries for the same ...
0
votes
0answers
39 views

Creating forms for embeds_many with Mongoid inheritance

I'm using inheritance in embedded documents so that @page.items can contain all different types of item such as TitleItem and CopyItem. I want to know which type I am currently iterating during ...
0
votes
1answer
122 views

Rails 3 - Why does calling .first on Mongoid cursor start new QUERY

I've been analyzing speed on my site, and I've found a problem with it. Here is my controller: before_filter :authorize before_filter :load_stuff def load_stuff @messages = ...
0
votes
0answers
68 views

Rails - Mongoid 'cascade callbacks' macro causing Delayed Job issue

I have Delayed Job (AR backed) running some background tasks for 'Model' (which is a Mongoid document). If I set 'cascade_callbacks' to true for one of the documents embedeed in 'Model', DJ stops ...
1
vote
1answer
54 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 ...
0
votes
1answer
152 views

Mongoid Without Rails

I'm playing with a standalone ruby application and can't configure Mongoid 3.0.13 to work. I've run across a couple example apps that have configuration blocks like: ...
0
votes
0answers
38 views

Search and order embedded items on mongoid

I have this { items: { _id: "", orders: [{ _id: "", createdAt: "" }] } } and i need to search for all orders from every item and order by createdAt using mongoid mongodb rails driver. I have a ...
0
votes
0answers
13 views

How do i get an embeds_many relationship to not persist in mongoid?

I have a :group embeds_many :images At times, I would like group.images = [Image.new, Image.new] to not persist. The reason is because :user embeds_many :groups, and it may have 10 groups, i ...
1
vote
2answers
51 views

Mongoid Relational Queries Syntax

I'm having issues using a has_and_belongs_to_many relationship. I have the following: class User include Mongoid::Document has_and_belongs_to_many :subjects end class Subject include ...
0
votes
0answers
50 views

Automatically generate forms based on model fields

I have a model with many different attributes, and in the future I may add new attributes. However, I don't want to edit my _form.html.erb file every time I need to add one line of code to a model ...
1
vote
1answer
90 views

Mongoid: why fetching count is slower than fetching documents

I noticed a strange behavior. It might be mongoid or mongodb, I am not sure, but Counting documents is slower than fetching the documents. Here are the queries I fired: ...
2
votes
0answers
63 views

What inverse_of does mean in mongoid?

What inverse_of does mean in mongoid associations? What I can get by using it instead of simple associations without it?
0
votes
1answer
141 views

Applying FactoryGirl trait to Mongoid embedded objects

I am building a Rails 3.2.11 application with Mongoid. I test with Cucumber and create test objects with FactoryGirl. I have embedded objects. I want to be able to use FactoryGirl traits with both ...
0
votes
1answer
34 views

Mongoid association & null object pattern?

How would you implement the null object pattern on a Mongoid relation? Class Owner include Mongoid::Document embeds_one :preference end Most owners won't have a preference, and thus I want them ...
0
votes
0answers
134 views

Export to CSV with i18n

When exporting from MongoDB to csv I get my current i18n locale, is it possible to filter this out? {"sv"=>"hejsan"} I would like this to be only hejsan. Participant.rb (model) class ...
0
votes
1answer
47 views

validate_presence_of parent attributes mongoid

User.rb model class User include Mongoid::Document # relationships has_one :post #fields field :name, :type => String field :last_name, :type => String end Post.rb model class ...
0
votes
0answers
46 views

Rails + Mongoid + validates_confirmation_of doesnt work

Using Ruby 2.0.0-p0, rails 3.2.12 with MongoDB & Mongoid 3.0.2 ( I have tried with 3.2.x also) When I try to validate with confirmation of emailaddress It wont validate even though I write in the ...
0
votes
0answers
45 views

Rails - Mongoid - i18N - Register over every tag that can be translated

Is there a register over every type of message that can be translated when using Mongoid gem? mongoid: attributes: participant: f_name: 'Ditt förnamn' l_name: 'Ditt ...
0
votes
1answer
121 views

Efficient Down-sampling in mongodb

I have a database where I store a lot of data and generate views for graphs. Instead of returning all of the data for the graph, I return only a predefined number of samples. The way I currently do ...
1
vote
2answers
76 views

Need to Save Relationship in MongoDB with Rails and mongoid

I need to save group_id in my user document using Rails collection_select Code Listed Below Model User: class User include Mongoid::Document include Mongoid::Timestamps include ...
0
votes
1answer
77 views

Mongoid where clause ruby hash

Say I have a mongoid document which has a field :pairs with the type of hash. When I wan't to query on the hash like this: Doc.where(:pairs=>{"field1"=>1}) I get results back because I have ...
2
votes
0answers
108 views

Rails and MongoID webapp can't save data

I have a ruby on rails webapp hosted at digitalocean which stores its data on a mongo db through mongoID. I'm importing some data through a common API on a sidekiq worker but then I try to create an ...
0
votes
0answers
78 views

Mongoid associations not working but ids very well exist

I have a test app running at Appfog. Appfog docs suggest use of Mongomapper gem but I have used Mongoid for my project. https://docs.appfog.com/services/mongodb Problem is: Mongoid associations ...
0
votes
1answer
29 views

Proper Way to Handle Date Forms in Rails

I wonder what is the proper way to deal with date forms and date field in Rails. I've got a validator in my model: validates_format_of :birthdate, :with => /\d{2}\/\d{2}\/\d{4}/ But I still ...
0
votes
0answers
64 views

uninitialized constant Mongoid::Spacial::Document::ClassMethods::Mongo

I am trying to use mongoid_spacial gem and here is how my model looks. class Place include Mongoid::Document include Mongoid::Spacial::Document field :name, :type => String ...

1 3 4 5 6 7 49