Created
January 20, 2012 12:22
-
-
Save anny-goerl/1647151 to your computer and use it in GitHub Desktop.
Rails Validations without ActiveRecord
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 Dashboard | |
include ActiveModel::Validations | |
attr_accessor :start, :finish, :status | |
validates :start, :presence => true | |
validates :finish, :presence => true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment