The ActiveModel Rails3+ library.
0
votes
1answer
13 views
Allow blank dates to pass validation and save in the database?
I have a Rails app, I am using Mongoid driver to map to my Mongodb database. I would like to allow users to not specify their date of birth if they do not want to. If they do specify the date I would ...
0
votes
0answers
17 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 ...
0
votes
2answers
23 views
Rails STI: Forbidding parent class initialization
I have a rails model Book, with STI-inherited models Fiction and NonFiction
While book holds a lot of common logic, I'd like to forbid creation of the parent Book model. Just wondering about the most ...
0
votes
1answer
26 views
Retrieve subset of many-to-many relationship in Rails/ActiveModel
As an example, I have Doctors with many Appointments with Patients. I want to retrieve all Patients who are currently active in an Appointment:
class Doctor < ActiveRecord::Base
attr_accessible ...
1
vote
2answers
76 views
Devise not working with Rails 4.0rc1
Is there a way to get Devise to work with Rails 4.0rc1? I get the following error when trying to start the rails server or even to generate the Devise views:
...
0
votes
1answer
23 views
ActiveRecord associations outside Rails
I am using active_record to connect to a database. I am working in plain ruby and not rails. I can connect to the database fine and do all the stuff except associations.
Can I do something like this?
...
0
votes
1answer
28 views
ActiveModel dynamic attributes
Sorry if my question is stupid, but I spent lot of time searching solution and I didn't find.
I'd like to create an ApiOutputsHandler model without database. So I've created an ActiveModel.
This ...
0
votes
1answer
29 views
Use ActiveModel::Serializers to include two parent json arrays
I'm trying to send my front-end application json that looks like this:
{
facilities: [
{id: 5, name: 'happy days ranch', location: { address: '1424 Pastoral Lane', zipcode: '25245'}, ...
0
votes
0answers
11 views
Rails 3.1 active model translation
I'm doing the migration from a Rails 3.0.7 to version 3.1.11
on my app I have an ActiveModel class:
class Form::Search
include ActiveModel::Validations
include ActiveModel::Conversion
extend ...
0
votes
0answers
21 views
Sub validate does not work
I have two class Matrix and Cell. Matrix is Active record class, Cell - is not. Matrix have cells - it's Postgress Array of int, any cell can convert to int.
I need to test all matrix cells is ...
1
vote
1answer
47 views
idiomatic way to do regular expression searches in rails models?
in my rails controller, i would like to do a regular expression search of my model. my googling seemed to indicate that i would have to write something like:
Model.find( :all, :condition => ...
0
votes
1answer
34 views
Validation not working on Class that extends ActiveModel::Naming, include ActiveModel::Validations
I and new to ruby and rails; I have the below ruby class definition that I am using in my rails 3 app. This class is simply used as a property container for contact information populated in my view ...
0
votes
2answers
53 views
Changing respond_to url for an ActiveModel object
Summary:
How do I customize the path that respond_to generates for an ActiveModel object?
Update: I'm looking for a hook, method override, or configuration change to accomplish this, not a ...
0
votes
1answer
39 views
Serializing associations as an array of IDs
I'm trying to serialize a model's association as an array of ID's (int) of the associated models.
I'm currently using :include option in serializable_hash as such:
:include => {:associated => ...
0
votes
1answer
45 views
Unable to use ActiveModel::MassAssignmentSecurity
I am trying to use some functionality in ActiveModel but I'm having trouble making everything work. I've included my class file and the test I'm running.
The test is failing with:
': undefined method ...
1
vote
2answers
56 views
Rails: overriding model name in params
I have the following model:
class Action < ActiveRecord::Base
# model code stuff
end
In the controller, I can do something like that:
class ActionsController < ApplicationController
# ...
2
votes
1answer
92 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
79 views
Rails validation messages as JSON for accepts_nested_attributes_for models
I have a Mongoid model which has several nested sub models and collections. I set the attributes from my controller for those models using the Rails accepts_nested_attributes_for functionality.
When ...
0
votes
1answer
17 views
ActiveRecord / ActiveModel Attribute Case-Sensitivity
I'm moving a legacy app from MS-SQL to Postgres which uses Rails to access the data.
The columns in MS-SQL are capitalised, and while using activerecord-sql-server-adapter, they are read like this:
...
0
votes
3answers
91 views
Nested model form with mutliple has_many/belongs_to associations
I have three models:
class Rate < ActiveRecord::Base
attr_accessible :user_id, :car_id, :rate
belongs_to :user
belongs_to :car
end
class User < ActiveRecord::Base
attr_accessible ...
0
votes
1answer
20 views
rails: ActiveModel::Naming and ApiSmith::Smash not playing nicely
I am trying to build a frontend in Rails for a RESTful backend. So in the rails project models are not ARs, and they are fetched with API clients.
After a lot of researching and a lot of trying ...
0
votes
1answer
66 views
Rails where to place your Activemodel::validators
This is a two part question.
Part one if my Model that i am writing the validations for is inhering from ActiveRecord::Base do i need to include ActiveModel::Validations within that class?? the API ...
0
votes
1answer
30 views
Always capitalize attribute?
I have the following class:
class Message
extend ActiveModel::Naming
include ActiveModel::Conversion
attr_accessor :name, :emails, :custom_content
def initialize(attrs = {})
attrs.each ...
0
votes
2answers
129 views
Rails Undefined Method 'model_name'
I have the following model:
class Contact
attr_accessor :name, :emails, :message
def initialize(attrs = {})
attrs.each do |k, v|
self.send "#{k}=", v
end
end
def persisted?
...
1
vote
2answers
245 views
Rails 3 ActiveModel: cannot include ActiveModel::Model directly
In my Rails 3.2.11 and "development" environment when I try to have an active model:
class DisponibilityApi
include ActiveModel::Model
attr_accessor :start_time, :end_time
validates ...
1
vote
1answer
37 views
Only persist document if it has embedded documents with Mongoid?
I have a 2 level nested form (much like this) with the following classes. The problem I have is that when I don't add any intervals (the deepest embedded document) I don't want the second deepest ...
2
votes
2answers
167 views
on an ActiveModel Object, how do I check uniqueness?
In Bryan Helmkamp's excellent blog post called "7 Patterns to Refactor Fat ActiveRecord Models", he mentions using Form Objects to abstract away multi-layer forms and stop using ...
0
votes
0answers
117 views
rails 3.2.11 active-model backed object with strong_parameters gem
Is this the right way to use strong_parameters gem with an active-model backed object.
The way I have called it in the controller, is that correct.
Model
require "strong_parameters"
class Reblog
...
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 ...
0
votes
1answer
61 views
Understanding how ActiveRecord exists? works when building an association
I have two models that are associated via a has_many relationship. E.g.
class Newspaper < ActiveRecord::Base
has_many :articles
end
class Article < ActiveRecord::Base
belongs_to :newspaper
...
1
vote
1answer
90 views
ActiveModel::Validations on anonymous class
I'm working on a small DataMapper-like ODM project, and I'm trying to make use of the ActiveModel::Validations component. However, I ran into a problem while writing tests - I'm using anonymous ...
4
votes
4answers
482 views
How to validate in a model, data from a controller
So I have some data that gets pulled from another rails app in a controller lets call it ExampleController and I want to validate it as being there in my model before allowing the wizard to move to ...
0
votes
2answers
105 views
Validating presence of attributes throwing error even when the field is not blank
So I have been working on a multi-step form in ruby on rails (1.9.3) using Active model, following both the railscast #217 and #219 and am having problems with the validation the problem is that even ...
0
votes
0answers
45 views
ActiveModel : how to know which validations have failed on an attribute?
I've got this code :
class User
# ...
validates :email, presence: true, uniqueness: true
# ...
end
I try to validate the model and validation fails.
How can I know if validation has failed on ...
0
votes
0answers
84 views
Ruby on Rails - Custom form field names mapped to model
I'm wondering if it's possible to put a property in the ActiveRecord/ActiveModel class that would alias the attributes when rendered by the FormHelper
For example, I have two classes called ...
1
vote
1answer
126 views
ActiveModel multi-step form not showing next step
So I have been working on a multi-step form in ruby on rails (1.9.3) using Active model, following both the railscast #217 and #219 and am having problems with routing to the next steps in my form ...
1
vote
1answer
55 views
Uniqueness constraint not affecting fields
class User < ActiveRecord::Base
attr_accessible :username, :password
attr_accessor :username, :password
validates :username, :presence => true, :uniqueness => true
validates ...
1
vote
2answers
88 views
Save Rails model from controller params?
I tried User.create(params), but this says that "controller" and "action" aren't mass assignable. I could exclude these properties, but is there an easier way to marshall to the properties I need?
...
0
votes
0answers
90 views
How do I embed an array of validated objects in my class in Rails?
Is there a way that I can embed an array of objects in my class, that then hold a reference to their parent object?
Take this (pretty contrived) example:
class Person
include ...
0
votes
1answer
86 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
...
1
vote
1answer
133 views
What is the ActiveModel method attribute “_was” used for?
When using autocomplete in the console, I often see "_was" postpended to my attributes. But I can't find any documentation or best practices for usage. What does it do and how should it be used?
...
0
votes
2answers
122 views
Accessing attributes from different associated models rails 3
I am looking to get a better understanding of Active Model/Record relationships and how to call attributes dependent upon where the attributes are located (models) and where I am calling them. So for ...
1
vote
1answer
104 views
Trouble Saving Self-referencing Many-to-Many Relationship
I am new to Rails and struggling to get a formtastic form to save - the database keeps rolling back the insertion without any apparent explanation.
I have a PublishedItem and a Citation. Each ...
1
vote
3answers
124 views
How to access params in the callback of a Rails model?
I have a callback of a model that needs to create a dependent object based on another field entered in the form. But params is undefined in the callback method. Is there another way to access it? ...
0
votes
1answer
144 views
Default values for model attributes in Rails
What's the proper way to set default values for models in Rails?
class User < ActiveRecord::Base
attr_accessible :name, :points
end
I want points to start out at 0 instead of nil. Ideally the ...
2
votes
3answers
91 views
Ruby on Rails Activemodel with Associations
Acutally i face some hard exercises in computer science (hard for me i think, haha).
We're doing some basic stuff with Ruby on Rails an i have to open a csv file to get additional information on my ...
0
votes
1answer
63 views
Active Model Validations rails 3
I have a message model and i have been looking at various gems/js for client side validation. I then started reading about Active Model Validations, im pretty new to rails so please forgive me for not ...
3
votes
1answer
158 views
How to get records from multiple condition from a same column through associated table
Let say a book model HABTM categories, for an example book A has categories "CA" & "CB". How can i retrieve book A if I query using "CA" & "CB" only. I know about the .where("category_id in ...
0
votes
1answer
52 views
ActiveModel validation in separate File
Is there a way to fulfil the validation with ActiveModel in a separate file? There is the possibility of Custom Validations
class MyValidator < ActiveModel::Validator
…
end
and call them ...
0
votes
1answer
53 views
How to make a field unique by the result of a coalesce operation?
class Person
validates :full_name, presence: true
validates :display_name, unique: ???
attr_acessible :full_name, :display_name
end
Full names can not be unique, but the display name must be ...
