Carl Lerche
|
ed7614aa7d
|
Provide a way to specify alternate option keys for validates
|
2011-02-05 16:00:57 -08:00 |
|
Carl Lerche
|
7176ade35b
|
Do not require that validation attributes be specified as symbols
|
2011-02-05 15:37:38 -08:00 |
|
Samuel Kadolph
|
972011a2e5
|
Add support for namespaced validators
Includes test and documentation for new feature
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
|
2010-12-16 01:49:28 +05:30 |
|
Obie Fernandez
|
275f922a23
|
Better shortcut options for custom validators [#5672 state:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
|
2010-09-24 12:49:16 +02:00 |
|
Santiago Pastorino
|
b451de0d6d
|
Deletes trailing whitespaces (over text files only find * -type f -exec sed 's/[ \t]*$//' -i {} \;)
|
2010-08-14 04:12:33 -03:00 |
|
Santiago Pastorino
|
fdfebb7782
|
Make use of assert_equal to test equallity between object assert expects and object and a message of error
[#4611 state:committed]
Signed-off-by: José Valim <jose.valim@gmail.com>
|
2010-05-16 16:06:28 +02: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 |
|