José Valim
|
afd0c06dfa
|
Validates needs hash slice.
|
2010-01-17 09:57:16 +01:00 |
|
José Valim
|
b078f7fd39
|
Fix typos and add tests to ensure they will be caught the next time.
|
2010-01-11 23:38:35 +01:00 |
|
José Valim
|
017f5d5308
|
Fix typo by renaming :genre to :gender.
|
2010-01-09 00:18:07 +01:00 |
|
José Valim
|
7045c4c279
|
Allow validates to map some types to specific options. So now you can do:
validates :email, :presence => true, :format => /@/
validates :genre, :inclusion => %w(m f)
validates :password, :length => 6..20
|
2010-01-08 21:36:04 +01:00 |
|
José Valim
|
47a5fd4c4b
|
Allow :if, :unless, :on, :allow_nil and :allow_blank as shared options in validates.
|
2010-01-07 19:23:59 +01:00 |
|
jamie
|
0a79eb7889
|
Add validates method as shortcut to setup validators for a given set of attributes:
class Person < ActiveRecord::Base
include MyValidators
validates :name, :presence => true, :uniqueness => true, :length => { :maximum => 100 }
validates :email, :presence => true, :email => true
end
[#3058 status:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
|
2010-01-07 19:23:59 +01:00 |
|