| Commit message (Expand) | Author | Age | Files | Lines |
* | handled respond_to? with private methods | SHIBATA Hiroshi | 2012-12-03 | 1 | -1/+1 |
* | active_model/validations requires necessary files to run | Yves Senn | 2012-10-18 | 1 | -0/+1 |
* | Fix the the backport of the object dup with the ruby 1.9.3p194. | Angelo capilleri | 2012-06-12 | 1 | -1/+2 |
* | add backport for the pull request #6324 | Angelo Capilleri | 2012-05-15 | 1 | -1/+9 |
* | Fix indent from previous merge | Carlos Antonio da Silva | 2012-05-15 | 1 | -2/+2 |
* | clean the errors if an object that includes validations errors is duped,for 3... | Angelo capilleri | 2012-05-15 | 1 | -0/+6 |
* | Remove extra white spaces on ActiveModel docs. | Sebastian Martinez | 2011-05-23 | 1 | -1/+1 |
* | :if should not fire on validations when not in context with :on | Aditya Sanghi | 2011-04-29 | 1 | -1/+1 |
* | formatting changes | Vijay Dev | 2011-03-07 | 1 | -3/+3 |
* | copy-edits 8d96b89 | Xavier Noria | 2011-02-21 | 1 | -2/+2 |
* | Clarification of ActiveRecord ActiveModel validation documentation | Peer Allan | 2011-02-18 | 1 | -2/+2 |
* | Use map + flatten here | Santiago Pastorino | 2011-02-07 | 1 | -3/+3 |
* | Find all validators for multiple attributes | Carl Lerche | 2011-02-05 | 1 | -2/+4 |
* | Use run_callbacks; the generated _run_<name>_callbacks method is not a public... | John Firebaugh | 2011-01-31 | 1 | -1/+1 |
* | Tests and docs which explain the use of validate with a block and without arg... | Santiago Pastorino | 2010-12-19 | 1 | -1/+11 |
* | Fix syntax error in ActiveModel::Validations .validate example | fastred | 2010-10-01 | 1 | -1/+1 |
* | Fixing documentation to reflect deprecated add_to_base | Mikel Lindsaar | 2010-09-12 | 1 | -2/+2 |
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed '... | Santiago Pastorino | 2010-08-14 | 1 | -16/+16 |
* | Add missing ActiveModel::Validations require | Greg Campbell | 2010-08-12 | 1 | -0/+1 |
* | Freeze options so we raise an error when people modify it in place. | José Valim | 2010-08-03 | 1 | -2/+4 |
* | edit pass to apply API guideline wrt the use of "# =>" in example code | Xavier Noria | 2010-07-30 | 1 | -11/+7 |
* | Merge remote branch 'rails/master' | Xavier Noria | 2010-06-20 | 1 | -2/+9 |
|\ |
|
| * | ActiveModel::Validations::Callbacks should not be required by default. | José Valim | 2010-06-19 | 1 | -1/+18 |
| * | moving before_validation and after_validation functionality from ActiveRecord... | Neeraj Singh | 2010-06-19 | 1 | -12/+2 |
* | | Fix a bunch of minor spelling mistakes | Evgeniy Dolzhenko | 2010-06-15 | 1 | -2/+2 |
|\ \
| |/
|/| |
|
| * | Fix a bunch of minor spelling mistakes | Evgeniy Dolzhenko | 2010-06-11 | 1 | -2/+2 |
* | | Revised the rest of the files from ActiveModel. | Rizwan Reza | 2010-06-14 | 1 | -17/+23 |
|/ |
|
* | class_attribute is not a direct replacement of class_inheritable_*. | José Valim | 2010-06-10 | 1 | -5/+11 |
* | Validators should at model level and not at AR:Base level [Closes #4804] | Neeraj Singh | 2010-06-10 | 1 | -1/+1 |
* | minor changes to instance level validations implementation based on feedback ... | Josh Kalderimis | 2010-05-13 | 1 | -1/+2 |
* | validation macros can now be used within an instance | Josh Kalderimis | 2010-05-13 | 1 | -6/+3 |
* | updated AMo validations to use a context for valid? and invalid?, removing th... | Josh Kalderimis | 2010-05-08 | 1 | -5/+12 |
* | Makes validates_acceptance_of to not override database fields [#4460 state:co... | Santiago Pastorino | 2010-04-28 | 1 | -0/+3 |
* | Use Array.wrap uniformly | Jeremy Kemper | 2010-03-27 | 1 | -1/+2 |
* | Remove reference to unexistent methods and fix typo. | José Valim | 2010-03-26 | 1 | -1/+0 |
* | Accept array of attributes as arg also, like 2.3 | Jeremy Kemper | 2010-02-25 | 1 | -1/+1 |
* | Add validators reflection so you can do 'Person.validators' and 'Person.valid... | Prem Sichanugrist | 2010-02-21 | 1 | -3/+18 |
* | Full update on ActiveModel documentation | Mikel Lindsaar | 2010-02-01 | 1 | -1/+38 |
* | Allow :if, :unless, :on, :allow_nil and :allow_blank as shared options in val... | José Valim | 2010-01-07 | 1 | -3/+1 |
* | Add validates method as shortcut to setup validators for a given set of attri... | jamie | 2010-01-07 | 1 | -27/+40 |
* | Merge commit 'josevalim/validations' | Jeremy Kemper | 2009-12-28 | 1 | -33/+23 |
|\ |
|
| * | validates_each uses a BlockValidator. | José Valim | 2009-12-23 | 1 | -33/+23 |
* | | All AMo modules are safe to defer | Joshua Peek | 2009-12-22 | 1 | -0/+1 |
|/ |
|
* | Move validator, human_name and human_attribute_name to ActiveModel, remove de... | José Valim | 2009-10-20 | 1 | -0/+1 |
* | Callbacks, DeprecatedCallbacks = NewCallbacks, Callbacks | Joshua Peek | 2009-10-12 | 1 | -6/+4 |
* | Refactor new callbacks and AR implementation. | José Valim | 2009-09-08 | 1 | -2/+2 |
* | Changed ActiveRecord to use new callbacks and speed up observers by only noti... | José Valim | 2009-09-08 | 1 | -6/+10 |
* | Use send instead of instance_eval | Pratik Naik | 2009-08-06 | 1 | -1/+1 |
* | Allow validations to use values from custom readers [#2936 state:resolved] | James Hill | 2009-08-05 | 1 | -1/+23 |
* | Add some missing dependencies | Yehuda Katz | 2009-07-15 | 1 | -0/+2 |