aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorFabian Schwahn <fabian.schwahn@gmail.com>2017-07-18 16:57:57 +0200
committerFabian Schwahn <fabian.schwahn@gmail.com>2018-08-20 11:44:31 +0200
commitec6089995d456c91aadf1cb2324b2e626016975c (patch)
treed49efdf5e9a584cce4608e058f556628ba3cef83 /guides
parent103b02f1524beaa5c773f95dce6892dad3805d4f (diff)
downloadrails-ec6089995d456c91aadf1cb2324b2e626016975c.tar.gz
rails-ec6089995d456c91aadf1cb2324b2e626016975c.tar.bz2
rails-ec6089995d456c91aadf1cb2324b2e626016975c.zip
Improve documentation of Procs as :if / :unless options for callbacks
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_record_callbacks.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/guides/source/active_record_callbacks.md b/guides/source/active_record_callbacks.md
index 5b06ff78bb..5946acb412 100644
--- a/guides/source/active_record_callbacks.md
+++ b/guides/source/active_record_callbacks.md
@@ -319,6 +319,14 @@ class Order < ApplicationRecord
end
```
+As the proc is evaluated in the context of the object, it is also possible to write this as:
+
+```ruby
+class Order < ApplicationRecord
+ before_save :normalize_card_number, if: Proc.new { paid_with_card? }
+end
+```
+
### Multiple Conditions for Callbacks
When writing conditional callbacks, it is possible to mix both `:if` and `:unless` in the same callback declaration: