0
votes
1answer
23 views

Validate uniqueness also on deleted documents with Mongoid

I've got a rails application with a User model like the following one: class User include Mongoid::Document include Mongoid::Timestamps include Mongoid::Paranoia field :email, type: String ...
1
vote
1answer
15 views

Mongoid date_select and validates_presence_of

So if I use date_select in the form and make the model validates_presence_of :date. I will get an error saying : Date can't be blank, even though I have chosen a date already. # in the form ...
3
votes
3answers
87 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
0answers
48 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 ...
0
votes
0answers
84 views

Rails/mongoid BigDecimal validation

In Rails 3.2.12, Mongoid 3.1.1, I have Price model: field :price, type: BigDecimal validates :price, format: {with: /\A\d+(\.\d{2})?\z/} I need user submitted price to be for ex. 123 or 123.45 but ...
1
vote
1answer
52 views

Mongoid: Setting “asdf” as a date field's value, it is automatically replaced with “1970-01-01 00:00:00 UTC”

I noticed that when I set "asdf" as a Mongoid date field, then it is automatically replaced with 1970-01-01 00:00:00 UTC before any validation happens! So it is impossible to check for the correct ...
0
votes
1answer
94 views

Mongoid: ActiveModel Numericality Validation, allow_nil does not work

I've defined a Mongoid model with an Integer field for which i validate numericality like this # source.rb class Source field :code, type: Integer validates_numericality_of :code, allow_nil: true ...
3
votes
0answers
118 views

Adding custom fields to a class at runtime, in Ruby with mongoid

In a project came across a requirement wherein a logged in user should be asked specific data based on his company. This specific data would be company specific, and could be mandatory or unique. ...
0
votes
3answers
92 views

Using validates_with with ruby and mongoid

I'm new to ruby and mongoid. I need to use validates_with and below is the code I have class ValidatorClass < ActiveModel::Validator def validate(record) if record.name == "" ...
1
vote
1answer
135 views

Validation Hash fields using mongoid

I am working on mongoDB with Rails. So using gem mongoid, Anyone know how to validate Hash fields in model?
5
votes
1answer
422 views

Rails/ActiveModel passing arguments to EachValidator

I have a very generic validator and I want to pass it arguments. Here is an example model: class User include Mongoid::Document field :order_type has_many :orders, inverse_of :user ...
1
vote
1answer
46 views

Mongoid Revert if fail

I have a validations in mongoid that I want to revert if it fails while saving the error message. Example if @thing.update_attributes(params[:thing]) format.html { redirect_to @thing, notice: ...
0
votes
0answers
112 views

Rails 3/Mongoid: calling a validator on a collection when updated

I am working in Mongoid 3 and Rails 3. I want a validator to be called on a model after its collection is modified: class TooManyValidator < ActiveModel::EachValidator def validate_each(record, ...
1
vote
1answer
183 views

best way to iterate over all mongoid fields

Say I have a mongoid class Class User include Mongoid::Document field :username, type: String field :age, type: Integer before_save :remove_whitespace def remove_whitespace ...
3
votes
1answer
263 views

Mongoid saving documents despite invalid custom validation

I'm not sure if this is a problem with Mongoid or with the standard Rails validators, but documents that are invalid are still being saved to the database. I have models set up to something like: ...
1
vote
2answers
240 views

ActiveModel validate attribute based on association

I have at least 2 classes. One class must validate one of its attributes based on the value of an associated model's attributes. The below code is what I am going for, but its just an idea, it ...
0
votes
1answer
90 views

Rails 3: Mongoid validates_inclusion_of error

class Request include Mongoid::Document field :code, type: String validates :code, :presence => true, :inclusion => { :in => proc { Listing.all_codes } } Using ...
0
votes
0answers
189 views

Rails with mongoid nested attributes with validation presence of associated record

I have strange problem with mongoid, nested attributes and validations. In my application I have the following two models: class User has_and_belongs_to_many :companies validates :companies, ...
0
votes
1answer
1k views

Limit number of objects in has_many association with mongoid

I want to limit the number of associated objects in a has_many association between a post and pictures : In active record i can do something like class post < < ActiveRecord::Base has_many ...
0
votes
2answers
475 views

Validating polymorphic association type in Rails

I am developing a controller that creates a model with a polymorphic belongs_to association. What I do now to find the model it belongs to is as follows: def find_polymorphic_model(classes) ...
0
votes
1answer
466 views

Rails3/Mongoid Validations Not Running

In my application, it seems that no ActiveModel validations are running, at all. That is, they always return true (valid) no matter how invalid the data actually is. class QueueItem include ...
1
vote
1answer
2k views

Mongoid validation uniqueness with scope and belongs_to

I have the following mongoid model, with a scoped validation to prevent multiple votes on one bill. Each vote belongs to a user and a group: class Vote include Mongoid::Document field :value, ...
1
vote
0answers
166 views

Validate voter id in rails3 + mongoid + voteable_mongo

I have a problem with voteable_mongo gem when I want to validate voter id. In my app users vote for offers and I would like to make validation for offer (only accepted users can vote). How can I do ...
0
votes
1answer
434 views

How to use MongoID validates_inclusion_of

I have a model with a field that can contain a list of values. I want that list to be limited to a subset. I want to use validates_inclusion_of, but probably misunderstand that validation. class ...
1
vote
1answer
1k views

Mongoid validations not working

I have a Mongoid model, and the validations aren't working, at all. No error messages, no problems, but I can insert invalid data. class Place include Mongoid::Document include ...
2
votes
1answer
356 views

How to validate presence of associated object in mongoDB?

In my application I have Link model like this: class Link include Mongoid::Document field :url, :type => String validates_presence_of :url belongs_to :link_bucket end and LinkBucket ...
7
votes
3answers
2k views

Rails/Mongoid error messages in nested attributes

I have a contact info class defined like this: class ContactInfo include Mongoid::Document validates_presence_of :name, :message => ' cannot be blank' field :name, :type => String ...
1
vote
1answer
245 views

Rails and mongoid: Validation is called on the referenced document upon saving/updating the referrer document?

I have a model Tracker that references_many Users. Everything works fine, but for some business reasons, sometimes my Users model are in a situation were often they fails the validation rules (on ...
1
vote
2answers
1k views

Date validation helper for mongoid/active model?

are there any date validation helper for mongoid or active model? I want to check dates on valid ISO_8601 standard (http://en.wikipedia.org/wiki/ISO_8601#Dates) which is not a big deal with mongoids ...
1
vote
1answer
944 views

How to validate models with a composite keys in ActiveRecord?

I'd like to know if I can write a validation that would validate the uniqueness of a record based on multiple fields. My model has a composite primary key, i.e. field :houseno, :type => String ...
1
vote
4answers
1k views

Mongoid: How can I make Mongoid recognize my custom ActiveModel validations?

I have a model, which has and array of names and I want to ensure that only one document can have a given name. I'm trying to write a custom validation to handle this. My custom validation and the ...
3
votes
1answer
565 views

mongoid uniqueness validation many-to-many relation

I have following association class Employee include Mongoid::Document employee_id :name references_many :companies, stored_as => :array, :inverse_of => :employees end class Company include ...
3
votes
2answers
1k views

validates_associated model with condition

I have the following validates_associated scenario class Parent include Mongoid::Document validates_associated :son validates_associated :daughter end when i create a parent, either of son or ...