The activemodel tag has no wiki summary.
13
votes
4answers
2k views
How can i set include_root_in_json to false for all my RoR models?
How can i set include_root_in_json to false for all my RoR models?
I've tried to set ActiveModel::Base.include_root_in_json = false inside application.rb, but it has no effect.
11
votes
2answers
878 views
Rails 3, RSpec 2.5: Using should_receive or stub_chain with named scopes
I use Rails 3.0.4 and RSpec 2.5. In my controllers I use named scopes heavily, for example
@collection = GuestbookEntry.nonreplies.bydate.inclusive.paginate(
:page => params[:page], ...
7
votes
6answers
2k views
rails 3.2.0 and heroku
Hey Guys I'm having some troubles with rails 3.2.0 & ruby 1.9.3, I only created a new app with rails new command and I'm trying to deploy to heroku. I'm having the following app error:
An error ...
6
votes
2answers
472 views
Controlling the order of rails validations
I have a rails model which has 7 numeric attributes filled in by the user via a form.
I need to validate the presence of each of these attributes which is obviously easy using
validates :attribute1, ...
5
votes
1answer
91 views
Rails validatation to ensure a username does not clash with an existing route?
I want to ensure users can't create usernames that clash with my existing routes. I would also like the ability to deny future routes I may define. I am thinking of accomplishing this like so:
In the ...
4
votes
2answers
949 views
Rails 3: Display validation errors for a form (not saving an ActiveRecord model)
Apologies if this is a really common and/or ridiculous question; I swear I've read over the documentation multiple times and everything seems so focused on ActiveRecord to the point they've wandered ...
4
votes
2answers
979 views
How to determine if a record is just created or updated in after_save
The #new_record? function determines if a record has been saved. But it is always false in after_save hook. Is there a way to determine wether the record is a newly created record or an old one from ...
4
votes
3answers
3k views
Rails 3: Custom error message in validation
I don't understand why the following is not working in Rails 3. I'm getting "undefined local variable or method `custom_message'" error.
validates :to_email, :email_format => { :message => ...
4
votes
3answers
334 views
Disabling ActiveModel callbacks
I published an article on disabling ActiveModel callbacks, but I’m not completely sure this is the prettiest way to do something like this.
Mongoid::Timestamps adds a before save callback that ...
4
votes
1answer
115 views
How do I do a join in ActiveRecord after records have been returned?
I am using ActiveRecord in Rails 3 to pull data from two different tables in two different databases. These databases can not join on each other, but I have the need to do a simple join ...
3
votes
1answer
143 views
Mass-assign exception no explanation found (Rails 3.2.1)
Please see this post as well.
Note: The current rake task saves User and Topic objects, but not posts or tags when setting a post object.
Question: What is a proper way to describe this relationship ...
3
votes
1answer
265 views
Rails associations can't mass-assign foreign key
Maybe I am doing it wrong but here is my issue:
@restaurant = current_user.restaurants.build(params[:restaurant])
This builds a new restaurant object where the user_id is set to the ...
3
votes
1answer
85 views
How to generate associations between models
I am wondering how to do the association in Rails correct. First I create a City model and an Organisation. Now I want to have an Organisation have a City... this is done by adding the has_many and ...
3
votes
1answer
126 views
How Do I test a custom validator?
I have the following validator:
class EmailValidator < ActiveModel::EachValidator
def validate_each(object, attribute, value)
unless value =~ /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
...
3
votes
2answers
672 views
Ruby on Rails 3 (3.1) ActiveModel Associations (tableless nested models)
How to impliment ActiveModel associations (tableless nested models)?
For example:
book has many chapters
With ActiveRecord I would create two models and assosiate them with has_many and ...
3
votes
3answers
2k views
rails 3:how to generate models for existing database tables
I've configured my database.yml to point to my existing mysql database
how can I generate models from it?
rails generate model existing_table_name
only gives an emty model..
3
votes
1answer
928 views
Where are Default Validation Error Messages in Rails 3.0?
Where are the default validation error messages in Rails 3.0? What is the equivalent of ActiveRecord::Error.default_error_messages[:taken], for example? I have gotten as far as finding that ...
2
votes
1answer
29 views
How to restore the class of associations from an ActiveModel object serialized into JSON?
I have a class including ActiveModel that needs to have some "associations", like this:
a = ActiveModelClass.new
a.user = User.find(1)
I'm just using an attr_accessor for this:
attr_accessor ...
2
votes
0answers
102 views
Type safe Rails 3 Tableless Model
This Railscast describes how to set up a tableless model in Rails 3 as in:
class Message
include ActiveModel::Validations
include ActiveModel::Conversion
extend ActiveModel::Naming
...
2
votes
3answers
561 views
Deploying to Rails project to Heroku: Could not find activemodel
I am relatively new to rails and have been working my way through the Michael Hartl Tutorial. Throughout I have been deploying my projects to Heroku, however now I am at the end of chapter 5, I am ...
2
votes
1answer
107 views
How to pass argument to delegate method in Rails
I would like to have a Dashboard to display summary of multiple models, and I implemented it using Presenter without its own data. I use an ActiveModel class (without data table):
class Dashboard
...
2
votes
0answers
106 views
Trouble implementing ActiveModel with class attributes on using DelayedJob
I am using Ruby on Rails 3.0.9 and DelayedJob 2.1 and I am trying to implement a "Contact Us" form myself using ActiveModel functionalities. So...
... in my model file I have:
class ContactUs
...
2
votes
1answer
104 views
Rails, creating a callback
I want to use an ActiveModel callback to be called after an object has been voted on, the issue is that the gem I'm using (voteable_mongo) to make the model votable doesnt provide like a vote model or ...
2
votes
1answer
149 views
ActiveModel - View - Controller in Rails instead of ActiveRecord?
I'm trying to use ActiveModel instead of ActiveRecord for my models because I do not want my models to have anything to do with the database.
Below is my model:
class User
include ...
2
votes
2answers
371 views
Rails 2.3.11 Create Model for Form And Use ActiveRecord Validation
In Rails 3 you simply include ActiveRecord modules in order to add validations to any non-database backed model. I want to create a model for a form (e.g. ContactForm model) and include ActiveRecord ...
2
votes
1answer
100 views
ActiveModel equivalent for ActiveRecord has_attribute?
I am using ActiveModel because I am hooking up to a third party API rather than a db. I have written my own initialiser so that I can pass in a hash and this be converted to attributes on the model - ...
2
votes
2answers
344 views
Track dirty for not-persisted attribute in an ActiveRecord object in rails
I have an object that inherits from ActiveRecord, yet it has an attribute that is not persisted in the DB, like:
class Foo < ActiveRecord::Base
attr_accessor :bar
end
I would like to be ...
2
votes
2answers
210 views
Retrieving Rails 3 model with XML column
I have a Rails 3 model that includes a XML column in the database (IBM DB2). Whenever I try to retrieve this model in the XML format by @model.to_xml, I get as result the XML column escaped, something ...
2
votes
3answers
247 views
where to put ActiveModel::Validator?
I try to follow http://api.rubyonrails.org/classes/ActiveModel/Validator.html , but where should I put the
class MyValidator < ActiveModel::Validator
def validate(record)
if ...
2
votes
2answers
182 views
get validations from model
How cat I get list of validations defined in model
Example:
class ModelName
validates_presence_of :field_name
validates_inclusion_of :sex, :in => %w(M F)
end
I need Hash like:
{:field_name ...
2
votes
1answer
860 views
Rails 3 ActiveModel Nested Class I18n
Given the following class definition in ruby:
class Conversation
class Message
include ActiveModel::Validations
attr_accessor :quantity
validates :quantity, :presence => true
end
...
2
votes
1answer
496 views
Getting types of the attributes in an ActiveRecord object
I would like to know if it is possible to get the types (as known by AR - eg in the migration script and database) programmatically (I know the data exists in there somewhere).
For example, I can ...
2
votes
1answer
146 views
ActiveModel timestamp fields: where does the timestamp come from?
In a Rail model, when a record gets added/updated, is the timestamp given per the clock on the rails server or the database server?
1
vote
1answer
39 views
RSpec and ActiveModel
I have a module and it includes activemodel and I want to test it using rspec.
This is my setup so far:
lib/
|__ my_module/
| |__ base.rb
|__ my_module.rb
spec/
|__ my_module_spec.rb
|__ ...
1
vote
1answer
26 views
How to create ActiveModel Object in rails 3
I am having the following model class on ActiveRecord. How to write an equivalent ActiveModel for this class?
class Recommendation < ActiveRecord::Base
def self.columns() @columns ||= []; end
...
1
vote
1answer
21 views
validates :something, :confirmation => true & attr_accessor confusion
am struggling with Ruby validates :confirmation => true in my Rails app. Consider the following code:
# == Schema Information
#
# Table name: things
#
# id :integer not null, ...
1
vote
0answers
29 views
What's the correct way to make before_validation, etc. work in an ActiveModel
Should I extend or include ActiveModel:Validations:Callbacks:ClassMethods or ActiveModel:Validations:Callbacks?
1
vote
1answer
44 views
ActiveModel dymamic methods in instance objects
I'm using ActiveModel in one of my projects and I wanted to ask what is the best way for dynamic methods defining in next situation
Base ActiveModel class has only 1 accessor attribute called ...
1
vote
2answers
43 views
Rails, how to setup a one to many relationship?
I have the following models:
User (id, name, network_id)
Network(id, title)
What kind of Rails model assoc do I need to add so that I can do:
@user.network.title
@network.users
Thanks
1
vote
1answer
60 views
Friendship model, how to determine if a friendship model already exists between 2 users
I have a Friend model:
user_id, friend_id, status (approved, pending, ignored)
Given a user currently logged in, I want to be able to do something like
current_user.friendship_exists(@user)
...
1
vote
1answer
54 views
Rails: Database structure as models
So this may sound a bit awkward, but I would like to have the database structure (tables, fkeys, columns) as a projection on Rails models e.g. the model
Table < ActiveModel
which would ...
1
vote
1answer
170 views
avoiding code duplication in Rails 3 models
I'm working on a Rails 3.1 application where there are a number of different enum-like models that are stored in the database. There is a lot of identical code in these models, as well as in the ...
1
vote
1answer
102 views
form_for non-AR model - fields_for Array attribute doesn't iterate
I'm having trouble getting fields_for to work on an Array attribute of a non-ActiveRecord model.
Distilled down, I have to following:
models/parent.rb
class Parent
extend ActiveModel::Naming
...
1
vote
2answers
77 views
How to iterate over all “table columns” in an ActiveModel?
I want to iterate over all the columns in a table for a Model and perform some logic on it.
def fetch_all_fields
@profile_page ||= profile_page
SOMETHING.each do |field_name|
...
1
vote
1answer
41 views
Creating several objects with relationships in rails
I'm new to rails.
I have a signup form, where the user can create a project, at the same time, as signing up.
The project should get created, and the new user is made "Admin" of the project.
I have ...
1
vote
2answers
46 views
Rails model variable changing unexpectedly
Going mad here. Any pointers gratefully received!
I've got a Delivery model and I'm trying to add a method to update the delivery state, based on delivery lines. This function is defined within the ...
1
vote
2answers
77 views
ActiveModel fields not mapped to accessors
Using Rails 3 and ActiveModel, I am unable to use the self. syntax to get the value of an attribute inside an ActiveModel based object.
In the following code, in save method, self.first_name ...
1
vote
1answer
44 views
Why are these Rails validations different?
validates :password, :presence => { :on => :create },
:length => { :within => 4..40 }
and
validates :password, :presence => { :on => :create },
:length ...
1
vote
2answers
52 views
ActiveRecord relations: Can A has_many Bs AND A has_one B at same time?
I have a situation that I'm not sure how to handle in Rails:
Event has_many :photos and
Photo belongs_to :event
simple enough
But, Event also needs to reference a single "key" photo.
Thought ...
1
vote
1answer
86 views
Rails: Getting list of attributes with uniqueness validations from a model
Just wondering if it's possible to return a list of all attributes which possess a uniqueness validation? For example, I have a model Person - I'd like to return a list of the attributes in 'Person' ...