The validation process on save can be skipped by
passing :validate =>
false. The regular Base#save method is replaced with this when the
validations module is mixed in, which it is by default.
# File activerecord/lib/active_record/validations.rb, line 49
def save(options={})
perform_validations(options) ? super : false
end