1
vote
Subclassed model results in NameError in development environment but not in test
It's not saying that Fold exists in the Deal namespace, it's saying that it's looking for the constant Fold and it's currently inside Deal. For …
5
votes
Understanding Ruby on Rails render times
This:
Rendered user/_old_log (25.7ms)
is the time to render just the _old_log partial template, and comes from …
6
votes
Rails “validates_uniqueness_of” Case Sensitivity
validates_uniqueness_of :name, :case_sensitive => false does the trick, but you should keep in mind that validates_uniqueness_of does not guarantee uniqueness …
0
votes
Autofill IDs in a form with a relation
If you want to ensure that a blogger's posts are associated with the correct user, then don't use a form field for this at all, since their values can be changed by the end user. Better to rely on …
3
votes
Linking Two Models Together in Ruby on Rails
Unfortunately Rails doesn't let you nest has_many's more than 2 deep.. Forgetting about naming it friends for a moment (let's call it users instead), this would theoretic …
0
votes
Can you force activerecord associations to update without saving them?
If you start off like this:
client1 = the_server.clients.build(:name => 'a client', ...)
Then you should get what you're looking for I think.
EDIT:
…
3
votes
Passing param values to redirect_to as querystring in rails
The 'Record' form of redirect_to uses the second argument only for the response statu …
0
votes
Rails after_save callback to create an associated model based on column_changed?
This may have changed since the question was posted, but the after_save callback should have the *_changed? dynamic methods available and set correctly:
class Order
a …
