Tagged Questions
0
votes
2answers
29 views
Can't save on action create
I have some problems with rails+mongoid to save on action create
I wrote the relations:
class SchoolClass
include Mongoid::Document
include Mongoid::MultiParameterAttributes
has_one :teachers
...
1
vote
1answer
30 views
Best practices for mongoid relations
I am mapping relations in mongoid, I want to know the best practices for mongoid.
Models
Customer
Service
Supplier
there are four different services (S1, S2, S3, S4), each service provided by ...
1
vote
1answer
38 views
Rails database name dynamically by user choice in Mongodb
While installing my app , I want to ask question like
Name of database?
and user will input name they want for database.
Database name is inside config/mongoid.yml
development:
sessions:
...
0
votes
0answers
24 views
“Not equal” named scope in rails with Mongoid
I have two models Content and ContentType. In Content model I can do:
def get_all_content_except_poking_message
Content.all.where(:name.ne => "no forking, just poking")
end
Now, I am trying to ...
0
votes
0answers
24 views
Calling destroy on relation in Mongoid many to many relation with helper model does not remove model from List
I have a many to many relation from User to Project with a helper model. User and Project has many user_project_memberships and user_project_membership has one Project and one User.
When I try to ...
2
votes
2answers
71 views
Rails validation for has_one relation
I have two model like:
class Employee
field :name
field :login, type: Boolean
has_one :user
end
class User
field :username
field :email
belongs_to :employee
validates_presence_of ...
1
vote
1answer
33 views
Automatically mark required fields with an asterisk, not working
I'm trying to detect the required fields in a mongoid model in order to add a mark after the label in the view. This is the initializer I'm using. Note that the only different thing for Mongoid is ...
0
votes
1answer
15 views
View helper for mongoid-pagination?
In rails, does mongoid-pagination have a view helper that will automatically render the pagination links on a view on which it is applied? Do I have to build my own one instead.
For example with ...
1
vote
0answers
14 views
Rails/delayed_job just… not working
I've spent about 3 hours trying to get a simple delayed_job to execute without success. I have this extremely simple job:
class Foo
def foo
`echo foo >> /tmp/mrsmee`
end
end
I'm ...
0
votes
0answers
18 views
Need rails delayed_jobs to go in specific database
I'm planning to use delayed_job in a Rails application using the Mongoid backend. How do I arrange for delayed jobs to be created in a specific Mongo database (not the default)?
1
vote
0answers
24 views
Intersecting Mongoid “in”-Queries
According to the mongoid documentation on Explicit Merging ("Queryable#in - defaults to intersect") I would expect the following query:
Contact.in(id: ['a', 'b']).in(id: ['b', 'c'])
to result in ...
0
votes
1answer
37 views
Nested Querying in Mongoid in 2013
So this question is two years old:
Querying embedded objects in Mongoid/rails 3 ("Lower than", Min operators and sorting)
and the way it recommends to query nested objects with less than ...
0
votes
2answers
38 views
Extract Mongoid documents based on the DateTime of their last has_many relations?
I have a bunch of orders, and some of them have order_confirmations.
1: I wish to extract a list of orders based on the DateTime of its last order_confirmation. This is my failed attempt (returns 0 ...
0
votes
2answers
39 views
How to create relations among models for a rails app with devise and mongoid?
I'm trying to create a simple to-do list app here..
Is there any tutorial which can guide me to create relations among models?
and what changes are nedded for the task controller..
Ruby - 1.9.3-p385
...
0
votes
1answer
29 views
Rails/Mongoid: Can an embedded (embedded_in) document have many documents (has_many)?
I have a user who embeds many email_accounts. At the same time I wish that the email_accounts can have many email_templates. Is this possible? My Rails app refuses to accept the relations when I try ...
0
votes
1answer
35 views
Should dates be an embedded document?
I am using Mongoid 3. I have a Video model. Should dates be an embedded document or an Array type?
If I have this structure:
{
:id => 2,
:dates => [
{
:date ...
1
vote
3answers
19 views
How to return a Mongoid::Criteria for A has many B has many C relation?
Relations are:
Account has many Groups
Group has many Users
I need a method in Account to get all users (Users of each group) and then apply an User scope:
account.rb
def users
...
2
votes
2answers
36 views
rails mongoid follow/unfollow guidance and optimization
i'ved been trying to find an ideal solution for following in mongoid and found this.
HABTM mongoid following/follower
for some reason, Im not sure how optimum is this and this post was way back in ...
0
votes
1answer
56 views
Modify JSON response of embedded object in rails / mongoid
I am trying to modify the JSON in my controller.
I have a projects model that embeds_many images using Mongoid.
Here are the models:
class Project
include Mongoid::Document
field :name, type: ...
2
votes
1answer
47 views
Mongoid, calling update_attributes twice to persist change
I have the following models:
class Group
...
has_many :users, dependent: :delete
...
end
class User
belongs_to :group
has_one :invitation, dependent: :destroy, foreign_key: 'to_id'
...
0
votes
0answers
30 views
Mongoid search into a hash
I want to query on a ordered hash field.
Example:
{"0"=>"value_1", "1"=>"value_2"}
I can easily get one or another value by:
Model.where('my_field.0' => 'value_1').first
but, hash can ...
0
votes
0answers
18 views
Getting rid of 'Mongoid config not found' when configuring it programmatically
Good evening,
Have faced a problem with programmatic configuration of Mongoid (v. 2.7.1).
I need to use a custom way of configuring it. Not through mongoid.yml. And if doing so - all works fine ...
2
votes
0answers
30 views
Using Rapns with Mongoid [closed]
I have a rails application in which I have configured two databases. 1. Postgresql and 2. MongoDb. So I have database.yml for Postgresql and mongoid.yml MongoDb.
I'm using rapns to do push ...
0
votes
2answers
26 views
Create embedded document on object creation in Mongoid
Let's say I have these:
class User
include Mongoid::Document
field :name, type: String
field :email, type: String
embeds_many :auths
attr_protected :name, :email
end
class Auth
include ...
0
votes
1answer
50 views
how to return mongodb documents directly to client, using Rails and Mongoid
Given documents with datetime and data to be displayed in a graph, how can I return the query results directly without converting from BSON to Ruby and then finally to JSON?
Problem: The time values ...
0
votes
1answer
45 views
Changes in code from Mysql to Mongodb in search and find_by
This is my categories controller
class CategoriesController < ApplicationController
def index
@categories = Category.order(:name).where("name like ?", "%#{params[:term]}%")
render json: ...
0
votes
1answer
33 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
37 views
Mongoid find not working?
I have Group and User models. User belongs to Group, Group has many Users.
I'm writing an integration test with Rspec: When a Group has at least one User, the Group is not deleted.
Factory:
...
0
votes
3answers
35 views
include/exclude mongoid attributes
I have a mongoid object:
post = Post.first
When I try:
post.attributes.each do |a|
...
end
this block parse all object attributes.
I need only parse 3 attributes. post.attr1, post.attr2, ...
0
votes
1answer
48 views
Rails mongoid has_one queries
In User model there is has_one relation to Professional. In the professional model I have one Array field named industries.
I need to take all values where professional industries in "IT"
I tried ...
0
votes
0answers
46 views
Changing Search Query from Mysql to MongoDB
This is the query for Mysql database
@names = Name.order_by(:name) .where("name like ?", "%#{params[:term]}%")
I want to change it to Mongodb Database query since i am using Mongoid.
I did this
...
0
votes
0answers
19 views
Mongoid version check
I'm running a Rails app with MongoDb and Mongoid. In the docs (http://mongoid.org/en/mongoid/docs/installation.html) they list a configuration option, skip_version_check.
Is there any way to specify ...
0
votes
1answer
31 views
remove resource name and get 404 response with mongoid_slug gem
namespace :blog do
resources :posts, :only => [:index, :show], :path => "/"
end
If I write:
http://localhost:3000/blog/post1
and it's working fine. However if I write:
...
0
votes
4answers
77 views
How to generate optgroup in rails with Mongoid?
What is the best way to group options when using MongoDB?
I am using Mongoid, when I tried this approach:
<%= field.select :resource_id,
...
0
votes
1answer
51 views
Mongoid: Order by field and skip N records
I have a collection with the following data:
{
"_id" : ObjectId("516b969beceaed363a000027"),
"user" : "276",
"item" : "796",
"rating" : 1,
}
I want to order by user and then within each ...
10
votes
1answer
84 views
Storing Time Stamp as Number Mongoid
I'm new to Mongoid. In my model file, I've created a field with data type BigDecimal. I want to store time stamp in it. Below is the model that I'm using:
class Test
include Mongoid::Document
...
0
votes
0answers
40 views
Rails + Mongoid - Rails Console - unexpected form of a result
I am using ElasticSearch, MongoDB.
I have a large model User.rb:
class User
include Document
include Mongoid::Random
include Tire::Model::Search
include Tire::Model::Callbacks
include ...
0
votes
1answer
34 views
Delayed Job object not properly deserialized
I'm having a hard time believing what I'm seeing, but it sure looks like DJ is failing to deserialize an object properly. I look at the DJ record in mongo and I see in the YAML that the object has ...
1
vote
1answer
36 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 ...
0
votes
1answer
40 views
Rails + Mongoid + Devise : Add a birthday field to the register form
I'm using Rails 3.2.11, mongoid 3.1.2 and devise 2.2.3 and I have an User model with a birtday Date field.
class User
include Mongoid::Document
field :birthday, type: Date
field :email, ...
2
votes
1answer
36 views
Mongoid observers not firing at all (rails 3.2.13, mongoid 3.1.3)
I think I followed the description of how to make observers exactly, Model page:
class Page
include Mongoid::Document
field :title, type: String
field :content, type: String
end
I have an ...
1
vote
1answer
37 views
Mongoid: How to inverse a 1-N relationship, and store foreign key on parent?
I'm creating a Profile that describes a person. Included in this description is information about what Industry they work in (i.e. "Computers & IT"). So the relation is defined such that:
"A ...
1
vote
1answer
15 views
How to order_by a field in a model that belongs to another model in mongoid?
So I have these models:
class b
:field boolean, :type => Boolean
end
class c
embeds_many :a
end
class a
belongs_to :b
scope :sort_by_boolean, order_by(:b.boolean => :asc)
end
I ...
0
votes
1answer
27 views
Mongoid Unique Constraint on Composite Key
I'm trying to follow the advice in Mongoid 3 - Check for uniqueness of composite key to have a model with a unique constraint on 2 fields.
The id declaration is this:
field :_id, type: String, ...
2
votes
2answers
92 views
FactoryGirl creating objects in development environment
When I boot up my rails console in development I see FactoryGirl creating objects. Clearly I'm doing it wrong, but what's the right way to do this? This code makes my tests work...
# ...
0
votes
1answer
55 views
activeadmin-mongoid: How to filter on id?
This doesn't work:
filter :name, :as => :string
Because mongoid ids are not strings, you can't filter on the ids as a string. Is there a nice way to filter on the ids by creating a custom ...
1
vote
0answers
51 views
Update attributes of embedded new record in Rails & Mongoid
I'm trying to write a piece of functionality that creates a record from a template in my Rails app, but with some customisations from the user.
The difficulty comes when trying to let the user ...
1
vote
1answer
54 views
mongoid .limit does not work in mongoid 3.1.x
i tried something like this in rails with mongoid 3.1.0 and lastest 3.1.3.
.limit does not work. below it should return 1 row but it returns all (4)
code:
@go = Gallery.limit(1)
logger.info "count: ...
2
votes
0answers
70 views
Rails blog using Mongoid - Auto generate Short URL on post creation
I have a simple blog engine using Rails and Mongoid ORM.
I have 2 models in the blog, 'Article' and 'Url'.
The Article model contains all of the post content, and the Url class is the generator ...
0
votes
0answers
32 views
How to resolve “geo field only has 1 element” error
I have a geocoded collection that throws an error when I try to query for the number of documents that are geocoded. Here is my query;
Account.exists("locations.coordinates" => false).count
...

