aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/developer.rb
blob: a839fe11357791976b2354d1becbf72ddb7dc50c (plain) (blame)
1
2
3
4
class Developer < ActiveRecord::Base
  validates_inclusion_of :salary, :in => 50000..200000
  validates_length_of :name, :within => 3..20
end