Tagged Questions

4
votes
2answers
3k views

Problem with setter override on ActiveRecord

This is not exactly a question, it's rather a report on how I solved an issue with write_attribute when the attribute is an object, on Rails' Active Record. I hope this can be useful to others facing ...
2
votes
1answer
58 views

Is there a way to prevent serialized attributes in rails from getting updated even if there are not changes?

This is probably one of the things that all noobs find out about Rails sooner or later. I just realized that rails is updating all fields with the serialize keyword, without checking if anything ...
2
votes
0answers
137 views

Rails ActiveRecord: Does accepts_nested_attributes_for mark a parent record as dirty even if parent attributes are unchanged?

I'm syncing data with an iPhone app, so it's important to know which records have been "actually" updated and which ones have not. I've got an Event model with a RelatedLink association: In ...
1
vote
2answers
520 views

“Was dirty” plugin for ActiveRecord?

I'm working on some code that uses a lot of after_save callbacks, and I remember seeing a plugin that allows the model.changes array to persist after a call to save. It would be a great help if I ...
0
votes
1answer
21 views

changed? call on properties not working

I have a model class as shown below: class Product < ActiveRecord::Base belongs_to :user; attr_accessible :price before_save :check_if_price_changed after_save ...
0
votes
1answer
25 views

Rails 3: object.save is writing the old values to database

I have code which is updating a model's property then calling save!. A Rails.logger.info call shows that the model thinks it has the new values. But the SQL write performed by the save! call is ...
0
votes
1answer
96 views

In Rails 3.1 how can I check if any instances of a model's has_many association have changed?

In Rails 3.1 I know you can check if a given instance of a model object can be changed, but how would I check if any instances of a model's has_many association changed. For example assume I have an ...
0
votes
2answers
424 views

mongoid: update nested attributes

i am running into an issue with updates to nested attributes for referenced documents not being persisted > u = User.first => #<User... > u.changes => {} > u.profile.changes ...