September 2007
2 posts
3 tags
i'm on lifehacker! (sort of)
Lifehacker just reviewed the new Yahoo! MapMixer, and guess who’s map they decided to use as an example?!? Heh.
Launch: Merge Your Map on Yahoo Maps with MapMixer
4 tags
assigning false within activerecord callbacks...
When will I learn this lesson?
I just dumped yet another hour down the drain before I realizing I was returning false from a before_create method in an ActiveRecord model.
def before_create
returning true do
self.foo = false
end
end
or simply
def before_create
self.foo = false
true
end