Skip to content

Instantly share code, notes, and snippets.

@wohckcin
Created April 8, 2012 08:18
Show Gist options
  • Save wohckcin/2335964 to your computer and use it in GitHub Desktop.
Save wohckcin/2335964 to your computer and use it in GitHub Desktop.
Rails, User Validates
#---
# Excerpted from "Agile Web Development with Rails",
# published by The Pragmatic Bookshelf.
# Copyrights apply to this code. It may not be used to create training material,
# courses, books, articles, and the like. Contact us if you are in doubt.
# We make no guarantees that this code is fit for any purpose.
# Visit http://www.pragmaticprogrammer.com/titles/rails4 for more book information.
#---
class User < ActiveRecord::Base
validates :name, presence: true, uniqueness: true
has_secure_password
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment