Mongoid is an Object-Document-Mapper (ODM) for MongoDB written in Ruby.
1
vote
1answer
74 views
Get belongs_to association in FactoryGirl to work right
I'm trying to get associations in FactoryGirl to work, and they just ... don't. I've basically got this:
class Foo
include Mongoid::Document
belongs_to :bar
end
class Bar
include ...
0
votes
0answers
36 views
Mongoid 1.9.5 undefined method `utc' for “{ \”$date\“ : 1325376000000 }”:String
I have a pretty basic method within one of my Mongoid models to generate a CSV file containing data for this model. The code looks like this:
def self.to_csv(file = '/tmp/test.csv')
...
1
vote
0answers
58 views
Eager Loading mongoid
I want optimize this code with mongoid eager loading if it's possible. This is the first code that is working fine:
orders_with_user_detail = Order.where(cv_id: current_user.cv.id)
...
0
votes
2answers
49 views
Rails routes not matching 'new' pattern with RESTFul routes
I got this error:
No route matches {:action=>"show", :controller=>"video_publications", :campaign_id=[...]
With this url:
/campaigns/514be3834413790249000025/video_publications/new
I have ...
0
votes
1answer
78 views
Association in Mongodb in rails many time fails to find data but sometime works
Here i have Review module
class Review
include Mongoid::Document
include Mongoid::Timestamps
belongs_to :job
has_many :options, :class_name => "Option"
accepts_nested_attributes_for ...
1
vote
2answers
89 views
Time difference condition in rails using database Mongodb
I want such condition that after for example 5 days of data creation user cannot edit that data again.
Since i am using Mongodb as database
include Mongoid::Timestamps
which save database in
...
0
votes
1answer
35 views
Sorting on nested attribute, Mongoid
I have a model with this schema:
class Treatment
include Mongoid::Document
field :value, type: Money # money-rails gem
end
That value field get saved to the db as value: {"cents"=>313, ...
0
votes
1answer
174 views
rails 4 mongoid. mongoid_slug is not installing
I have started new project, installed mongoid, when i tried to install mongoid_slug it is giving me error.
I did not used --skip-active-record.
Bundler could not find compatible versions for gem ...
0
votes
1answer
63 views
update removed from moped::colllection - NoMethodError: undefined method `update' for #<Moped::Collection
I am new to working with mongodb & mongoid.. This is a rails app that was on mongoid 2 at some pont and have since moved to mongoid 3
I am trying to run the migrations, one of which has the ...
1
vote
1answer
27 views
How to validate count of related documents?
I have two models Item and Tag
class Item
include Mongoid::Document
field :title, type: String
has_many :tags
validates_length_of :tags, minimum: 1
end
class Tag
include ...
0
votes
1answer
70 views
The mongoid function “update_attribute” causes all attributes to be re-ordered alphabetically
Following up on this 1 year old post:
Mongodb mongoid model attributes sorted by alphabetical order not insertion order
I have a rails 3.2.8 application that uses mongoid v. 3.0.0. My application ...
0
votes
1answer
76 views
Pulling from Array in Embedded Document
I have three documents.
User
List
Food
A list can have many foods and is embedded inside the user document. I have an action in my controller that when an user is done with a food item, loops ...
0
votes
1answer
36 views
mongoid TypeError: keys must be strings or symbols
When I run this query in the Rails console:
1.9.3p286 :118 > cs = Conference.any_of({:schedule_cache => { :$elemMatch => { :start_date.gte => Date.parse('7 Mar 2013'), :end_date.lte => ...
0
votes
1answer
43 views
Self referential embedded documents using Mongoid
Say I have a mongoid model called Foo that embeds many Bar.
class Foo
...
embeds_many :bar
...
end
class Bar
...
embedded_in :foo
...
end
I would like to create a ...
0
votes
1answer
42 views
Rails grouped_coolection_select using Mongoid
I am having an issue with the grouped_collection_select using Mongoid. Error message I am getting is: ActionView::Template::Error (undefined method `merge' for :name:Symbol).
I am using rails 3.2.12 ...
0
votes
1answer
39 views
Ruby/Mongoid decorate record with new attribute
I'm trying to figure out how to decorate a specific Mongoid record with an attribute so that to_json comes back with that attribute included (please do not tell me to pass specific arguments to ...
0
votes
1answer
77 views
Mongoid virtual attributes in to_json
I'm trying to get some virtual (non-persisted) attributes to show up in the JSON representation of some Mongoid models, but can't seem to get it to work:
class MyModel
include Mongoid::Document
...
2
votes
1answer
67 views
Cannot save date in hash (Mongid, Rails)
I'm using mongoid as the orm for my mongodb backend in rails. I can create an object (notice that release_date is a date object):
movie1 = Movie.create(title: "The Dark Knight", release_date: ...
1
vote
1answer
70 views
Mongoid 3.1 eager loading, json, and field names
Recently updated to Mongoid 3.1 from 3.0.3 and this resulted in some broken code and confusion on my side.
Say you have a pair of classes with a belongs_to/has_many relationship, like so:
class ...
0
votes
0answers
167 views
Ruby On Rails Mongoid Group By
For group by date I used group_by method.
Example: Product.all.group_by {|d| d.created_at } # return Hash
But kaminari not support Hash. I use Mongoid and me need group by date with page ...
1
vote
1answer
61 views
Mongoid::Paranoia delete associations
user.rb model
class User
include Mongoid::Document
include Mongoid::Paranoia
has_many :posts, dependent: :destroy, :autosave => true
end
post.rb model
class Post
include ...
0
votes
0answers
23 views
Image rendering issue in Engine Yard
I am using Engine yard Cloud server for rails mongoid app. For image uploading we use mongoid-paperclip gem. In my local system image is loading properly but when we use Engine Yard account the server ...
1
vote
2answers
39 views
Deal with multiple titles, descriptions and keywords in Mongoid
I've an element who can have one or some titles, one or some descriptions and one or some keywords list. From the web view, we have a some kind of "add alternative title" buttons. I was wondering what ...
0
votes
1answer
94 views
mongoid_fulltext error while rake db:create_indexes… undefined method `db' for #<Moped::Collection
using rails along with mongo-1.8.3, mongoid 3.1.2
i want to combine many string fields and create one full_text index.. but during initial setup i am getting this error
my model looks like this:-
...
1
vote
1answer
52 views
MongoDB Unique 10 digit ID
I would like to create a Unique 10 digit ID in MongoDB - for every user under a particular client that we get in our system. Note that we store all our users (who are from different clients), under ...
0
votes
1answer
43 views
significance of embedded_in in mongoid
I am trying to understand the relationships in mongoid and not able to move past the following:
class Band
include Mongoid::Document
embeds_many :photos
end
class Photo
include ...
0
votes
0answers
103 views
Mongoid polymorphic HABTM solution
Hello I use mongodb via mongoid with RoR. I want to build a polymorphic HABTM(has and belongs to many) relation.
How I implemented this:
User.rb
class User
has_and_belongs_to_many :checkin_place, ...
2
votes
1answer
88 views
Ambiguous Relationship in Mongoid
I'm trying to have viewer_ids in a Post model to save user_ids, and viewed_ids in User model to post_ids that got viewed. The thing when testing using Rspec to add/delete and access the relation from ...
0
votes
1answer
43 views
Designing a synchronizable embedded collection with MongoDB
I'd like to give an example for a design decision I'm struggling with:
Let's say I have a "To Do List" application, with each list defined as a MongoDB document, and its items defined as an embedded ...
0
votes
1answer
34 views
How do i access/select a specific embedded document in mongoid?
Is there a better way to do this?
class User
embeds_many :groups
def group(group_id)
gid = Moped::BSON::ObjectId(group_id)
self.groups.each.detect{|group| group.id == gid}
...
0
votes
1answer
42 views
SQL to Mongodb using Rails + Mongoid
I have the following document structure in Mongoid:
class Post
include Mongoid::Document
field "title", type: String
field "body", type: String
field "category_name", type: String
...
0
votes
1answer
24 views
Inheritance inconsistency with mongoid
mongoid version: mongoid (2.4.12)
rails -v #=>Rails 3.1.10
class A
include Mongoid::Document
field :foo
def self.inherited(klass)
end
end
class B < A
field :bar
end
class C < A
end
...
0
votes
0answers
84 views
Group clause Mongoid Rails
I have coded this and it's working in a previous version of Mongoid but in the latest version group is not there.
Can anyone help me out? What do I need to do? And how can I use map/reduce in it?
...
0
votes
1answer
40 views
get class name from mongoid criteria
irb(main):019:0> a = Admin.first
=> #<Admin _id: 514b318da61654dd05000002, email: "email@email.com", encrypted_password: "$2a$10$b.cWtfPNgUcCubJRX2vjAO6vEsds9OTGO2tn6Lfz2cBU.mwTYsHw.">
...
2
votes
0answers
42 views
How to test mongoid model validations with message by shoulda?
I have a model with validations, like this:
class Order
include Mongoid::Document
field :first_name, type: String
field :last_name, type: String
validates_presence_of :first_name, :message ...
0
votes
1answer
25 views
Rails 3.2.11 app (with mongoid/MongoHQ) crashes on Heroku
I am using Rails 3.2.11 and it works locally with mongoid on a local mongodb. I have provisioned MongoHQ and set mongoid.yml correctly. Soon after app is deployed it fails on starting a web dyno as if ...
0
votes
1answer
78 views
How do I perform a $geoIntersects query with Mongoid?
I'm using Sinatra and mongoid driver, now I'm trying to perform this query in mongoid, actually I have a geospatial (Polygon) field called 'geometry':
db.states.find({
geometry: {
...
0
votes
0answers
23 views
Testing a Mongoid::Relations::Proxy model
I recently came across some models in an application that I'm working on (that I didn't write) that extend from Mongoid::Relations::Proxy. I'm not familiar with the purpose of this class and how I ...
0
votes
2answers
79 views
Can't save array in Mongoid
I have a has_many relationship with another object. Because of this, Mongoid creates an attribute titled item_ids as an Array so I can conveniently save numerous ids as an array. However, whenever I ...
1
vote
1answer
53 views
“Chained” relations (1:n:m) with Mongoid and Rails
I'm trying to achieve a really simple "multiple relationship" in Rails (3.2.12) with Mongoid (3.1.2). I got three models:
class User
include Mongoid::Document
field :name
has_many :collections
...
0
votes
1answer
41 views
Odd results from mongoid using Debian squeeze mongodb
I'm experiencing odd results in data returned from gem, mongoid using mongodb on Debian squeeze. The data is good. How can I stop these consistent failures to return the data correctly?
My mongodb is ...
2
votes
1answer
93 views
How to describe belongs to many?
I have three model classes User, Product and Purchase. Purchase describes quantity of a product for ordering. So a purchase has one product, and a product may belongs to many purchases. But Mongoid ...
0
votes
1answer
39 views
Mongodb import export database
I want to import and restore the mogodb database from one machine to another
I have used
sudo mongodump --collection collection --db ppm_v2_development
But its getting empty folder
...
0
votes
1answer
51 views
Mongoid embeds_many: push document without save in order to preserve dirty state
In Mongoid, pushing a document into an embeds_many relation automatically persists the document to the database. Normally, this is fine, but I run into problems when I need to track changes to the ...
3
votes
1answer
101 views
embedded document vs hash datatype in mongoid
I can't find any blog post or documentation talking about this. They both, embedded document and hash data type, are quite similar. What the benefit or limitation of each over the other?
Consider my ...
0
votes
1answer
37 views
How to find a document by looking for a match in an embedded document array?
This seems so simple but apparently I'm missing something. I've got a WebSite model:
class WebSite
include Mongoid::Document
has_many :domains, inverse_of: :web_site
field :name, type: String
...
0
votes
1answer
35 views
persist embeds_one relation mongoid
class Order
include Mongoid::Document
include Mongoid::Timestamps
#relationships
embeds_one :user_detail
#fields
field :description
#validations
validates :user_detail, presence: ...
0
votes
1answer
64 views
Rails4 Rake:test error
After a recent update tests not working.
Ruby 2.0.0-p0, rails 4.0.0beta1, mongoid 4.0.0.
/Users/doniv/.rvm/gems/ruby-2.0.0-p0@global/gems/rake-10.0.3/lib/rake/task_manager.rb:49:in `[]': Don't know ...
1
vote
1answer
137 views
Mongoid scaffolding tests fail on fixtures
When I create a new rails app with mongoid:
rails new tddapp --skip-active-record
cd tddapp
echo "gem 'mongoid'" >> Gemfile
bundle
rails g mongoid:config
And then generate a simple scaffold:
...
0
votes
1answer
47 views
Mongoid and Rails overlapping date ranges
I'm working on a project that places "bookings" for a particular property. In order to prevent a property from being double booked, I am trying to return a result of properties that are unavailable ...