Skip to content

Instantly share code, notes, and snippets.

@j-manu
Created November 17, 2011 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j-manu/1374732 to your computer and use it in GitHub Desktop.
Save j-manu/1374732 to your computer and use it in GitHub Desktop.
class List < ActiveRecord::Base
acts_as_list :order => :position
validates_presence_of :name, :link
validates_numericality_of :position, :only_integer => true , :allow_nil => false
protected
def validate
if position < 1
errors.add(:position , " must be greater than 0")
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment