0
votes
1answer
12 views

Is it possible to make an attachment optional in paperclip?

Here's how I am using paperclip in my model: has_attached_file :photo, styles: { display: { geometry: "146x153#", format: :jpg, }, message: { geometry: "48x48#", ...
0
votes
0answers
12 views

Rails validates :length issue

I have a text box where I would like to set a maximum character count of 1400. I am using a jQuery plugin to provide visual feedback of this character count. ...
0
votes
0answers
18 views

Validating Child Object with ActiveModel Validations

I have two plain Ruby classes, Account and Contact. I am using Simple Form's simple_form_for and simple_fields_for to create nested attributes. I am looking to fulfill the following validation ...
2
votes
2answers
76 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 ...
0
votes
1answer
16 views

List all validation rules for a certain model

I think I have duplication in validation of an attribute since I am getting the same validation error twice on email field. I suspect the some gems may enforce the same validations. Is there a way ...
0
votes
1answer
36 views

Active Record Error messages form_tag Rails 3

I have a validation in my model like so class Prediction < ActiveRecord::Base attr_accessible :home_team, :away_team, :home_score, :away_score, :fixture_date, :fixture_id, :user_id has_one ...
0
votes
1answer
53 views

Check if record exists in Model Rails

I was wondering if i would need to create a custom validation for the following scenario. I have a Prediction model, in which a user submits their predicted scores for a set of football matches, they ...
0
votes
2answers
25 views

Auto generate models on creation of other models in Ruby on Rails

I have a model called Video that has many statuses. I want to create a status of each kind and add it to @video.statuses in the def create of VideosController. In VideosController, I have: def ...
0
votes
0answers
16 views

Validate association count on join table with extra attributes

I have a join table like so: class UserSport < ActiveRecord::Base attr_accessible :athlete_id, :sport_id, :primary TOTAL_SPORT_COUNT = 5 belongs_to :athlete belongs_to :sport ...
2
votes
1answer
40 views

Rails Merge child errors with Parent errors

I've got the following two (sanitized/stylized) models: class DrivingExam < ActiveRecord::Base belongs_to :dmv_rules has_many :invigilator_assignments, as: :assignable has_many ...
0
votes
1answer
21 views

Rails 3 customize validate's error with i18n

I'm using some validates on my model and try to convert error to my language Here in my Model TaiSan I have some validates like this: class TaiSan < ActiveRecord::Base attr_accessible :MaTS, ...
0
votes
1answer
35 views

Validation after database submission

I have a payments model as follows: class Payment < ActiveRecord::Base attr_accessible :amount, :method, :payment_date, :reference_no, :invoice_id belongs_to :invoice validates :amount, ...
0
votes
1answer
42 views

Model paper clips validations errors are not displayed in simple_form

I am using paper_clip and simple_form gems. Unfortunately, it seems that paper clip validations errors are not displayed in my form. I have try several types and syntax of paper_clip content_type ...
0
votes
0answers
18 views

Where to begin validating polymorphic associations?

Using what seems to be a canonical example: class Comment < ActiveRecord::Base belongs_to :commentable, :polymorphic => true end class Question < ActiveRecord::Base ...
0
votes
1answer
92 views

Nested Model validation errors show on create but not update

I have a Developer model that :has_one User model. This allows for authentication and stuff across different user types. When I create a new Developer with incorrect User data, it renders the list of ...
0
votes
0answers
13 views

DRYup shared model validations on before_destroy

To prevent removal of related records, I am applying the before_destroy callbacks approach on each model I defined several related-records validation methods in a module, so that they can be shared ...
0
votes
2answers
70 views

Rails “assign_attributes” not assigning nested models

I have two models with the following structure: class Wallet < ActiveRecord::Base include ActiveModel::Validations has_one :credit_card accepts_nested_attributes_for :credit_card ...
0
votes
1answer
41 views

Rails STI on nested model

I have a question about STI in rails that I cannot seem to get my head around. I have 2 models, order.rb class Order < ActiveRecord::Base has_many :answers end and answer.rb class Answer ...
0
votes
2answers
125 views

Rails 3 Active record validation error messages with unwanted/extra characters

I'm workin on ROR app using Rails 3.2.9 and I'm getting the error messages for a sign up page in my app as follows <li>Login is too short (minimum is 3 characters)</li><li>Email is ...
0
votes
1answer
133 views

Validating longitude / latitude with geocoder gem

I followed this Geocoder Railscast & I'm playing around with it to see if I can add validation to the longitude & latitude coordinates returned by the Geocoder Gem incase the user inputs a ...
0
votes
2answers
35 views

validate a field in function of the presence of another

I have 2 fields: attr_accessible :in_home #=> boolean, setted at false by default mount_uploader :carousel_picture, CarouselUploader#=>an image picture with CarrierWave + Rmagick. Nil by ...
0
votes
1answer
51 views

In Rails, how does validates_length_of handle multibyte characters?

Ruby on Rails can validate user input using validates_length_of method. How does this method handle multibyte characters? Example validates_length_of :title, :within => 0..10 "abcde" will pass ...
1
vote
3answers
77 views

What is the regex for a group of 6 numbers hyphen separated? [closed]

I am using Ruby on Rails and I "am a newbie" / "don't remember how" to matching regular expressions. I would like to validates_format_of with regex matching following strings: 122-162-281-5-0-221 ...
1
vote
1answer
20 views

How can I enable uniqueness validation when the submit string matched with existing lower case string?

When the user A submits california, it saves this as new record. Then if the user B submits California, it saves this as new record, too. I don't want that:( I want it recognize as the same string ...
0
votes
1answer
60 views

Testing Multiple Custom Validators with RSpec

I am trying to run specs for two custom validators: spec/validators/email_validator_spec.rb spec/validators/phone_validator_spec.rb When I run bundle exec rspec spec/validators/ the ...
1
vote
1answer
65 views

Why ActiveRecord automatically validates has_many association

Following models are given: class Question < ActiveRecord::Base has_many :answers end class Answers < ActiveRecord::Base belongs_to: question validates :comment, presence: true end ...
0
votes
1answer
35 views

rails activerecord validation with associations

I have model associations as follows: class Group < ActiveRecord::Base has_many :group_links, :dependent => :destroy end class GroupLink < ActiveRecord::Base ...
0
votes
1answer
24 views

Issues with validates_uniqueness_of and state_machine transition

I have a problem with the rails 'validates_uniqueness_of' function and the state_machine gem. Please look at the code below: state_machine :initial => :foo do state :bar do ...
0
votes
1answer
31 views

Rails field validation not working as expected

I have a users table with a row called screen_name which is a string. Among other constraints the screen name should not contain characters like . , & % @ etc. To this end I constructed following ...
0
votes
2answers
50 views

Limit number of siblings in belongs_to ActiveRecord?

How would you validate the number of children that belong to a parent object? For example, if I have a question object that accepts nested attributes for answers: class Question < ...
0
votes
1answer
52 views

rails 3 validations uniqueness on attributes of an association

i have a model called Fund and a model called Company .. where fund belongs_to a company. i have this validation in my Fund table: validates :name, presence: true, uniqueness: true This works both ...
0
votes
1answer
56 views

How to validate text isn't blank in Rails

if I do validates :body, :presence => true, :length => {:maximum => 30000, :message => ' is a bit long...'} validates :body, :length => {:minimum => 10, :message => ' is a ...
0
votes
2answers
50 views

Association size/limit validation fails in spec test

My School model has a has many association with it's students as well as a one-to-one assocation with a license which has a user capacity field. I would like to impose the validation to restrict the ...
0
votes
1answer
105 views

Rails 3 - how to assign the value to nested attributes before calling save in update action

Models associations are document.rb has_many :sections accepts_nested_attributes_for :sections, :allow_destroy => :true, :reject_if => proc { |attrs| attrs.all? { |k, v| v.blank? } } ...
1
vote
1answer
51 views

Rails 3.2 validating string inclusion default value not detected

I am using mongoid with a model field and given validation: field :status, type:String, :default=>'Active' validates :status, :inclusion=>{:in=>%w(Active, Done, Canceled, Merged)}, ...
0
votes
3answers
89 views

Rails 3 validate presence of many columns with custom messages

Is there a way to specify many validations like this more concisely? validates :col_a, :presence => {:message => 'col_a cannot be blank'} validates :col_b, :presence => {:message => ...
0
votes
1answer
133 views

Rails 3 validate URL or IP address

I'm searching for a way to validate a field for correct URL or IP address in a rails model. I've played a little bit with validates :url, :format => URI::regexp(%w(http https)), and other URL ...
0
votes
1answer
68 views

Removing “Validation failed” message from Exception return message

I have an ActiveRecord model Account : class Account < ActiveRecord::Base attr_accessible :msisdn validates_uniqueness_of :msisdn, :on => :create, :message => "User Already ...
0
votes
4answers
36 views

Send parameter to render

I have a form for creating a ticket, which needs an id of a project. This works but not when it comes to validation. If validation won't pass 'render :new' is executed and the project_id doesn't come ...
0
votes
1answer
61 views

Rails 3 basic validation not working with :prompt or :include_blank?

I have the following code in my view: <%= f.select :user_id, user_all_select_options, :include_blank => '--Select a name-----' %> It displays a list of users with --Select a name----- at ...
0
votes
2answers
98 views

Prevent change of one field in Rails model

I have two related models - let's say Activity and Step. Activity has_many :steps and Step belongs_to :activity which means the table for steps has an activity_id column. This is in Hobo 1.3, so ...
0
votes
2answers
179 views

rails custom validator to validate mime types with carrier wave

I am using the following way to validate the mime type of uploaded file content with carrier wave. https://gist.github.com/denyago/1298417 But this validation is running all the time even when no ...
0
votes
0answers
47 views

Rails model cross field validation

In Ruby on Rails application, I am trying to validate a field based on a method which takes as parameter another attribute of the record. Here is the scenario: In the Product model, I want to accept ...
1
vote
2answers
195 views

Adding TOS agreement checkbox with Devise

We're using devise for our members. We've added a tos_agreement field (boolean) to our member schema, and we added it too views/devise/registrations/new.html.haml. In the Member model, we have a ...
0
votes
1answer
62 views

How to write inclusion_of validator for date field in Rails 3?

I would like to write inclusion validator like below: validates :application_date, inclusion_of: { in: Date.today..20.years.from_now } # Schema # application_date :date But I get bad ...
0
votes
1answer
102 views

Rails 3: How to report error message from the controller's “create” action?

In my "create" action on a form, I successfully save (1) MyObject to my local database and (2) OtherObject to a third-party database via its Ruby API. When something goes wrong with the save to the ...
0
votes
1answer
44 views

How to validate that only one user can be a guardian?

How should I write validation that only one user can be a guardian. I am using rails 3.2 Model class User validate :only_one_guardian def only_one_guardian if User.where(guardian: ...
0
votes
3answers
87 views

Validate Attribute without saving

In Rails 3, I would like to see if a value for an attribute is valid using the model's validates options without trying to save or create. I'm writing the back end of a AJAX API, that should check a ...
0
votes
1answer
42 views

Rendering Errors Without Changing Link - Ryan Bates - RAILS

For those of you who actually have, or actually are watching RailsCasts, and for those of you who have actually watched these two videos: ...
0
votes
2answers
25 views

Is there an ActiveModel validation for association consistency

By example: A Place belongs to a User. An Event belongs to a User. An Event belongs to (but is not required to have) a Place. I'd like to validate that an Event's Place always has the same User as ...

1 2 3 4 5 11