Skip to content

Instantly share code, notes, and snippets.

@sideshowcoder
Last active December 11, 2015 08:38
Show Gist options
  • Save sideshowcoder/4574361 to your computer and use it in GitHub Desktop.
Save sideshowcoder/4574361 to your computer and use it in GitHub Desktop.
NeverSave < ActiveRecord::Base
validate :dont_validate_me
def dont_validate_me
errors.add(:base, "haha I will never validate")
end
end
NeverSave.valid? # => false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment