index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activemodel
/
lib
/
active_model
/
validations
/
length.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
Length validation handles correctly nil. Fix #7180
Michal Zima
2012-11-26
1
-2
/
+14
*
minor edits in AM documentation [ci skip]
Francesco Rodriguez
2012-10-21
1
-3
/
+3
*
calculate errors_options one time in validate_each
Angelo Capilleri
2012-08-03
1
-2
/
+2
*
AM::Validations: remove documentation duplicates
Bogdan Gusiev
2012-07-10
1
-14
/
+4
*
fix syntax of AM::Validations::HelperMethods examples [ci skip]
Francesco Rodriguez
2012-07-05
1
-3
/
+3
*
update ActiveModel::Validations::HelperMethods documentation [ci skip]
Francesco Rodriguez
2012-07-05
1
-24
/
+26
*
add :nodoc: to internal implementations [ci skip]
Francesco Rodriguez
2012-06-25
1
-1
/
+1
*
fixing removed empty lines and examples
Francesco Rodriguez
2012-05-16
1
-0
/
+1
*
better format and fixes to validators docs
Francesco Rodriguez
2012-05-16
1
-17
/
+27
*
Prefer || over 'or' for boolean operations
Benjamin Quorning
2012-02-22
1
-1
/
+1
*
remove unnecessary require core_ext/string/encoding
Sergey Nartimov
2012-02-14
1
-2
/
+0
*
To infinity… and beyond!
Niels Ganser
2012-02-06
1
-2
/
+2
*
don't call an extra method if options[:tokenizer] is not present
Vasiliy Ermolovich
2011-12-24
1
-4
/
+2
*
use Range#min and Range#max to reduce extra statement
Vasiliy Ermolovich
2011-12-24
1
-2
/
+1
*
deprecate String#encoding_aware? and remove its usage
Sergey Nartimov
2011-12-24
1
-2
/
+0
*
Ensure length validator also works on 1.8.7.
José Valim
2011-12-06
1
-6
/
+17
*
Don't tokenize string when counting characters
Ian Young
2011-12-04
1
-2
/
+1
*
Fix argument error message for length validation
Alexey Vakhov
2011-12-01
1
-1
/
+1
*
Implemented strict validation concept
Bogdan Gusiev
2011-08-17
1
-0
/
+2
*
remove stray (
Vijay Dev
2011-06-03
1
-1
/
+1
*
Change hashrocket spacing to match conventions.
Ben Orenstein
2011-06-02
1
-2
/
+2
*
Remove extra white spaces on ActiveModel docs.
Sebastian Martinez
2011-05-23
1
-3
/
+3
*
Don't add DEFAULT_TOKENIZER to every instance of LengthValidator. Just use it...
Akira Matsuda
2011-05-16
1
-2
/
+2
*
Refactor length validation
Santiago Pastorino
2011-03-12
1
-3
/
+3
*
length validation for fixnums
Andriy Tyurnikov
2011-03-12
1
-1
/
+2
*
copy-edits 8d96b89
Xavier Noria
2011-02-21
1
-1
/
+3
*
Clarification of ActiveRecord ActiveModel validation documentation
Peer Allan
2011-02-18
1
-1
/
+1
*
Deletes trailing whitespaces (over text files only find * -type f -exec sed '...
Santiago Pastorino
2010-08-14
1
-1
/
+1
*
tidy up validations length code [#5297 state:resolved]
Subba Rao Pasupuleti
2010-08-12
1
-6
/
+2
*
validates_length_of should not change the options hash in place. [#5283 state...
José Valim
2010-08-03
1
-4
/
+7
*
Refactor previous commit a bit [#4057 state:resolved]
José Valim
2010-06-21
1
-2
/
+2
*
Make ActiveModel::Errors#add_on_blank and #add_on_empty accept an options has...
Jeroen van Dijk
2010-06-21
1
-2
/
+6
*
Add titles to the rest of the files in active_model/validations/*
Rizwan Reza
2010-06-15
1
-0
/
+2
*
Revert "Make ActiveModel::Errors#add_on_blank and #add_on_empty accept an opt...
José Valim
2010-05-15
1
-2
/
+2
*
Make ActiveModel::Errors#add_on_blank and #add_on_empty accept an options has...
Jeroen van Dijk
2010-05-15
1
-2
/
+2
*
validation macros can now be used within an instance
Josh Kalderimis
2010-05-13
1
-1
/
+1
*
Favor %{} in all code instead of (deprecated) {{}} as interpolation syntax fo...
Lawrence Pit
2010-05-03
1
-3
/
+3
*
Merge remote branch 'mainstream/master'
Pratik Naik
2010-01-17
1
-44
/
+25
|
\
|
*
Compile length validator options still at the class level, so whenever the va...
José Valim
2010-01-08
1
-42
/
+24
|
*
Add validates method as shortcut to setup validators for a given set of attri...
jamie
2010-01-07
1
-2
/
+1
*
|
Merge remote branch 'mainstream/master'
Pratik Naik
2010-01-04
1
-57
/
+72
|
\
|
|
*
ActiveRecord::Validations are now built on top of Validator as well.
José Valim
2009-12-23
1
-2
/
+1
|
*
validates_each uses a BlockValidator.
José Valim
2009-12-23
1
-4
/
+3
|
*
Added check_validity! to EachValidator and refactor existing ones.
José Valim
2009-12-23
1
-27
/
+37
|
*
Move validations in ActiveModel to validators, however all validatity checks ...
José Valim
2009-12-23
1
-42
/
+49
*
|
Clean up documentation on validates_length_of and change overly juvenile exam...
Mike Gunderloy
2009-09-15
1
-4
/
+4
|
/
*
Fix exclusive range patch to use begin/end instead of min/max. [#2981 status:...
Adam Keys
2009-08-08
1
-4
/
+8
*
Simplyfy validates_length_of and remove puts
Pratik Naik
2009-08-08
1
-4
/
+7
*
validates_length_of with maximum should allow nil [#2309 status:resolved]
jzw
2009-08-08
1
-2
/
+4
*
Properly require ActiveModel validation dependencies
Joshua Peek
2009-06-08
1
-2
/
+2
[next]