I have a "custom" validation method that I only want executed on create like:
validate :post_count, :on => :create
def post_count
# validate stuff
end
but it gets fired on update (in addition to on create).
Does the :on => :create symbol not work with "custom" validation methods?
THanks!