Created
March 31, 2011 17:34
-
-
Save spacecowb0y/896836 to your computer and use it in GitHub Desktop.
default name: "Chuck Norris"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User | |
include DataMapper::Resource | |
# PROPERTIES | |
property :id, Serial | |
property :fullname, String, :default => "Chuck Norris" | |
property :password, String | |
property :created_at, DateTime | |
property :updated_at, DateTime | |
validates_presence_of :password, :unless => :fullname == "Chuck Norris" #BECAUSE CHUCK NORRIS DOESN'T NEED A PASSWORD | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment