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
/
activerecord
/
lib
/
active_record
/
validations.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add :case_sensitive option to validates_uniqueness_of (closes #3090) [Rick]
Rick Olson
2006-04-12
1
-3
/
+11
*
Doc fix #3960 [jonrailsdev@shumi.org]
David Heinemeier Hansson
2006-04-03
1
-2
/
+2
*
Fixed documentation
David Heinemeier Hansson
2006-03-28
1
-1
/
+1
*
Update description
David Heinemeier Hansson
2006-03-28
1
-3
/
+3
*
Fixed that Base.save should always return false if the save didn't succeed, i...
David Heinemeier Hansson
2006-02-28
1
-3
/
+5
*
Example for validates_presence_of method (closes #3966) [Robby Russell]
David Heinemeier Hansson
2006-02-26
1
-1
/
+7
*
Fixed validates_length_of to work on UTF-8 strings by using characters instea...
David Heinemeier Hansson
2006-02-25
1
-21
/
+25
*
Renamed Errors#count to Errors#size but kept an alias for the old name (and i...
David Heinemeier Hansson
2006-02-23
1
-1
/
+4
*
ActiveRecord::RecordInvalid now states which validations failed in its defaul...
Tobias Lütke
2006-02-05
1
-2
/
+2
*
Silly me
David Heinemeier Hansson
2006-02-01
1
-5
/
+0
*
Added Errors#any? to mean !Errors#empty? [DHH]
David Heinemeier Hansson
2006-02-01
1
-0
/
+5
*
Disambiguate table names for columns in validates_uniquness_of's WHERE clause...
Marcel Molina
2006-01-13
1
-3
/
+3
*
Allow validate_uniqueness_of to be scoped by more than just one column. Close...
Marcel Molina
2005-12-02
1
-5
/
+15
*
Revert [3130]. Behavior of introducing Kernel.binding causes breakage.
Marcel Molina
2005-11-21
1
-2
/
+2
*
Use Kernel.binding rather than binding to allow columns of that name. Refere...
Jeremy Kemper
2005-11-21
1
-2
/
+2
*
r3095@asus: jeremy | 2005-11-15 22:40:51 -0800
Jeremy Kemper
2005-11-16
1
-6
/
+13
*
Make Validations#create! use the current scope
Jamis Buck
2005-11-12
1
-0
/
+2
*
Include the Enumerable module in ActiveRecord::Errors.
Jeremy Kemper
2005-11-11
1
-0
/
+2
*
Allow capital letters in the email address in the the validates_format_of exa...
Florian Weber
2005-11-09
1
-1
/
+1
*
Add Model.create! to match existing model.save! method. When save! raises Re...
Jeremy Kemper
2005-11-03
1
-35
/
+65
*
Fix docs (closes #2491)
David Heinemeier Hansson
2005-10-26
1
-5
/
+5
*
Minor documentation fix
Florian Weber
2005-10-25
1
-1
/
+1
*
Association validation does not belong in a before_save callback: move it int...
Jeremy Kemper
2005-10-02
1
-3
/
+7
*
r3604@asus: jeremy | 2005-09-26 19:10:42 -0700
Jeremy Kemper
2005-09-26
1
-20
/
+29
*
Make update_attribute use the same writer method that update_attributes uses.
Marcel Molina
2005-09-26
1
-1
/
+1
*
Refactored to a more readble form #1813
David Heinemeier Hansson
2005-09-11
1
-1
/
+1
*
Fix typo in validations documentation #1938 [court3nay]
Jamis Buck
2005-08-14
1
-1
/
+2
*
Fixed validates_numericality_of to work with overrided getter-method when :al...
David Heinemeier Hansson
2005-07-02
1
-0
/
+1
*
Clarified intentions of validates_associated #870
David Heinemeier Hansson
2005-07-02
1
-1
/
+4
*
Updated all references to the old find_first and find_all to use the new styl...
David Heinemeier Hansson
2005-06-26
1
-2
/
+2
*
Fixed that validations didn't respecting custom setting for too_short, too_lo...
David Heinemeier Hansson
2005-06-25
1
-7
/
+3
*
Added ActiveRecord::Recursion to guard against recursive calls to #save
Jamis Buck
2005-06-13
1
-1
/
+1
*
Added Errors#add_on_blank which works like Errors#add_on_empty, but uses Obje...
David Heinemeier Hansson
2005-05-21
1
-6
/
+15
*
Added the :if option to all validations that can either use a block or a meth...
David Heinemeier Hansson
2005-05-21
1
-5
/
+66
*
Fixed docs for scaffolding generator #1303 [thijs@vandervossen.net]
David Heinemeier Hansson
2005-05-19
1
-2
/
+0
*
Fixed that validate_length_of lost :on option when :within was specified #119...
David Heinemeier Hansson
2005-04-30
1
-3
/
+5
*
Added validates_exclusion_of as a negative of validates_inclusion_of
David Heinemeier Hansson
2005-04-24
1
-0
/
+25
*
Fixed documentation and prepared for release of 0.12
David Heinemeier Hansson
2005-04-18
1
-3
/
+3
*
Added Base.save! that attempts to save the record just like Base.save but wil...
David Heinemeier Hansson
2005-04-18
1
-0
/
+9
*
Added the option to specify the acceptance string in validates_acceptance_of ...
David Heinemeier Hansson
2005-04-17
1
-3
/
+5
*
Cleaned up validates_length_of by calling existing validations on the common ...
David Heinemeier Hansson
2005-04-17
1
-29
/
+17
*
Address parsing failed when the "to" (or "cc", or whatever) was an array. It ...
David Heinemeier Hansson
2005-04-13
1
-4
/
+4
*
Added optionally allow for nil or empty strings with validates_numericality_o...
David Heinemeier Hansson
2005-03-14
1
-56
/
+46
*
Added validates_numericality_of #716 [skanthak/c.r.mcgrath]
David Heinemeier Hansson
2005-03-06
1
-42
/
+76
*
Finished polishing API docs
David Heinemeier Hansson
2005-02-23
1
-1
/
+3
*
Fixed that when using validation macros with a custom message, if you happene...
David Heinemeier Hansson
2005-02-22
1
-3
/
+11
*
Added validates_each that validates each specified attribute against a block ...
David Heinemeier Hansson
2005-02-18
1
-181
/
+254
*
Addded validation for validate all the associated objects before declaring fa...
David Heinemeier Hansson
2005-02-17
1
-3
/
+3
*
Fixed documentation snafus #575, #576, #577, #585
David Heinemeier Hansson
2005-02-07
1
-3
/
+3
*
Fixed documentation #538
David Heinemeier Hansson
2005-01-25
1
-1
/
+1
[next]