diff options
author | Oscar Del Ben <info@oscardelben.com> | 2012-04-27 14:21:16 +0200 |
---|---|---|
committer | Oscar Del Ben <info@oscardelben.com> | 2012-04-27 14:21:16 +0200 |
commit | fc3d15dcb0c4265d1aaeedfc51d8a8c8e382347a (patch) | |
tree | 05fc3bc5c7df89712f1f11e7f94306100265e74f /guides/source/active_record_validations_callbacks.textile | |
parent | f4447607f20c420d9c341b19064c07d5b7aa6cee (diff) | |
parent | 39574aa582337baa32a58caae7b2671cb52ae718 (diff) | |
download | rails-fc3d15dcb0c4265d1aaeedfc51d8a8c8e382347a.tar.gz rails-fc3d15dcb0c4265d1aaeedfc51d8a8c8e382347a.tar.bz2 rails-fc3d15dcb0c4265d1aaeedfc51d8a8c8e382347a.zip |
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'guides/source/active_record_validations_callbacks.textile')
-rw-r--r-- | guides/source/active_record_validations_callbacks.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_validations_callbacks.textile b/guides/source/active_record_validations_callbacks.textile index 88c4481e5e..f49d91fd3c 100644 --- a/guides/source/active_record_validations_callbacks.textile +++ b/guides/source/active_record_validations_callbacks.textile @@ -1064,6 +1064,7 @@ Additionally, the +after_find+ callback is triggered by the following finder met * +find_all_by_<em>attribute</em>+ * +find_by_<em>attribute</em>+ * +find_by_<em>attribute</em>!+ +* +find_by_sql+ * +last+ The +after_initialize+ callback is triggered every time a new object of the class is initialized. @@ -1076,7 +1077,6 @@ Just as with validations, it is also possible to skip callbacks. These methods s * +decrement_counter+ * +delete+ * +delete_all+ -* +find_by_sql+ * +increment+ * +increment_counter+ * +toggle+ |