aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-04-06 01:01:50 -0300
committerRafael França <rafaelmfranca@gmail.com>2016-04-06 01:01:50 -0300
commit659b104a006a346644fcbc4c6a40e8b717947429 (patch)
tree8b4a1083569c40ab8407236692707c052014e528 /guides
parent54ce28017c532833f29a5df7512e34c402ce9e78 (diff)
parent7f1fc1ee093732de7da9427370ff4858790a3684 (diff)
downloadrails-659b104a006a346644fcbc4c6a40e8b717947429.tar.gz
rails-659b104a006a346644fcbc4c6a40e8b717947429.tar.bz2
rails-659b104a006a346644fcbc4c6a40e8b717947429.zip
Merge pull request #24444 from prathamesh-sonpatki/update-message-proc-documentation
Update example of passing a proc to `:message` option for validating records [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/CHANGELOG.md6
-rw-r--r--guides/source/active_record_validations.md8
2 files changed, 10 insertions, 4 deletions
diff --git a/guides/CHANGELOG.md b/guides/CHANGELOG.md
index d35d0f1976..8132f77b4e 100644
--- a/guides/CHANGELOG.md
+++ b/guides/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Update example of passing a proc to `:message` option for validating records.
+
+ This behavior was recently changed in https://github.com/rails/rails/pull/24119 to
+ pass the object being validated as first argument to the `:message` proc
+ instead of key of the field being validated.
+
## Rails 5.0.0.beta3 (February 24, 2016) ##
* No changes.
diff --git a/guides/source/active_record_validations.md b/guides/source/active_record_validations.md
index bd16ccad12..1cf4abce10 100644
--- a/guides/source/active_record_validations.md
+++ b/guides/source/active_record_validations.md
@@ -785,7 +785,7 @@ A `String` `:message` value can optionally contain any/all of `%{value}`,
`%{attribute}`, and `%{model}` which will be dynamically replaced when
validation fails.
-A `Proc` `:message` value is given two arguments: a message key for i18n, and
+A `Proc` `:message` value is given two arguments: the object being validated, and
a hash with `:model`, `:attribute`, and `:value` key-value pairs.
```ruby
@@ -801,10 +801,10 @@ class Person < ApplicationRecord
# Proc
validates :username,
uniqueness: {
- # key = "activerecord.errors.models.person.attributes.username.taken"
+ # object = person object being validated
# data = { model: "Person", attribute: "Username", value: <username> }
- message: ->(key, data) do
- "#{data[:value]} taken! Try again #{Time.zone.tomorrow}"
+ message: ->(object, data) do
+ "Hey #{object.name}!, #{data[:value]} is taken already! Try again #{Time.zone.tomorrow}"
end
}
end