Skip to content

Instantly share code, notes, and snippets.

@anny-goerl
Created January 20, 2012 12:22
Show Gist options
  • Save anny-goerl/1647151 to your computer and use it in GitHub Desktop.
Save anny-goerl/1647151 to your computer and use it in GitHub Desktop.
Rails Validations without ActiveRecord
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