Rails 3.x before_validation(:on => :create) do does not work. Any other ideas appreciated
before_validation(:on => :create) do
You can add a condition to the callback with:
before_validation :do_something, :unless => Proc.new { |model| model.persisted? }