aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/validations.rb
Commit message (Expand)AuthorAgeFilesLines
* Remove extra white spaces on ActiveRecord docs.Sebastian Martinez2011-05-231-1/+1
* updated AR#create! to accept an options hash so the mass-assignment security ...Josh Kalderimis2011-05-121-3/+3
* Better formatting hereSebastian Martinez2011-04-241-3/+3
* copy-edits 8d96b89Xavier Noria2011-02-211-7/+7
* Typo: fixing the theNicholas Rowe2011-02-191-1/+1
* Clarification of ActiveRecord ActiveModel validation documentationPeer Allan2011-02-181-1/+15
* ActiveRecord#save(false) is now deprecated, now it is save(:validate => false)Jaime Iniesta2011-01-181-1/+1
* Partialy revert f1c13b0dd7b22b5f6289ca1a09f1d7a8c7c8584bJosé Valim2010-11-281-1/+1
* use persisted? instead of new_record? wherever possibleDavid Chelimsky2010-11-091-1/+1
* Refactor AR validations a bitCarlos Antonio da Silva2010-09-061-5/+1
* Cleanup deprecation warnings in active recordCarlos Antonio da Silva2010-09-061-12/+1
* Merge remote branch 'rails/master'Xavier Noria2010-06-201-2/+2
|\
| * moving before_validation and after_validation functionality from ActiveRecord...Neeraj Singh2010-06-191-2/+2
* | Adds title to the rest of the files in activerecord/libRizwan Reza2010-06-161-0/+3
|/
* Remove undocumented save_without_validation!Pratik Naik2010-05-111-4/+0
* Succint save definitionPratik Naik2010-05-111-4/+2
* Make sure valid? preceives the context as in ActiveModel API (ht: Carlos Anto...José Valim2010-05-101-25/+22
* eliminate alias_method_chain from ActiveRecordwycats2010-05-091-41/+30
* updated AR to work with the AMo model validation changesJosh Kalderimis2010-05-081-1/+5
* Drop AR I18n deprecation and simple use errors.messages as fallback.José Valim2010-01-301-2/+2
* save(false) is gone, use save(:validate => false) instead.José Valim2010-01-171-1/+11
* Errors messages are now moved from :activerecord.errors to simply :errors on ...José Valim2010-01-071-1/+1
* Get rid of DeprecatedCallbacks in ActiveRecord::Associations and finally remo...José Valim2009-12-301-2/+0
* Integer#even? and Integer#odd? are not needed for Ruby >= 1.8.7Xavier Noria2009-11-091-2/+0
* Move validator, human_name and human_attribute_name to ActiveModel, remove de...José Valim2009-10-201-89/+0
* Callbacks, DeprecatedCallbacks = NewCallbacks, CallbacksJoshua Peek2009-10-121-7/+7
* Changed ActiveRecord to use new callbacks and speed up observers by only noti...José Valim2009-09-081-30/+5
* allow ActiveRecord#RecordInvalid exception message to be localizedSven Fuchs2009-08-261-1/+2
* Merge docrailsPratik Naik2009-07-251-1/+1
* Simplify AMo validation attribute readerJoshua Peek2009-06-171-4/+0
* Update for Active Model yielding per error not per attributeJeremy Kemper2009-06-081-0/+1
* AS::Concern redefines "include" to lazy include modules as dependenciesJoshua Peek2009-05-291-2/+2
* AS::Concern includes InstanceMethods module if it existsJoshua Peek2009-05-291-2/+0
* Merge branch 'master' into active_modelJoshua Peek2009-05-291-10/+12
|\
| * Break up DependencyModule's dual function of providing a "depend_on" DSL and ...Joshua Peek2009-05-281-1/+1
| * Missing 1.8.7 backport extensionsJeremy Kemper2009-05-181-0/+2
| * Cherry-pick core extensionsJeremy Kemper2009-05-131-3/+2
| * Use DependencyModule for included hooks in ActiveRecordBryan Helmkamp2009-05-111-8/+7
| * Explicitly require builder for to_xmlJeremy Kemper2009-04-301-0/+2
* | Deprecate Model#validate/validate_on_create/validate_on_update. Use Model.val...Pratik Naik2009-03-211-13/+14
* | Move validate_on_create and validate_on_update from ActiveModel to ActiveRecordPratik Naik2009-03-211-2/+12
* | Add I18n translations to ActiveModel and move more AR specific parts to Activ...Pratik Naik2009-03-201-0/+115
* | Include ActiveModel::Validations from ActiveRecord::ValidationsPratik Naik2009-03-201-20/+29
* | Move uniqueness and association validations to Active RecordPratik Naik2009-03-191-0/+5
* | Move all the Active Record validations to Active ModelPratik Naik2009-03-191-1001/+2
|/
* Merge docrailsPratik Naik2009-03-161-1/+1
* Fix spelling of an internal method [#1734 state:resolved]Chris Kampmeier2009-03-121-1/+1
* Add ActiveRecord::Base#invalid? as the opposite of #valid? [#2159 state:resol...Jeffrey Hardy2009-03-081-0/+5
* Ensure validates_uniqueness_of considers limit on the field. [#1042 state:res...Arthur Klepchukov2009-03-071-4/+4
* support end-exclusive ... Ranges in SQL hash condition sanitization properlyWill Bryant2009-02-061-1/+1