DEV: Prefer public_send over send.

This commit is contained in:
Guo Xiang Tan
2019-05-07 09:27:05 +08:00
parent 9be70a22cd
commit 152238b4cf
74 changed files with 216 additions and 129 deletions

View File

@@ -113,11 +113,11 @@ class UserUpdater
if attributes.key?(attribute)
save_options = true
if [true, false].include?(user.user_option.send(attribute))
if [true, false].include?(user.user_option.public_send(attribute))
val = attributes[attribute].to_s == 'true'
user.user_option.send("#{attribute}=", val)
user.user_option.public_send("#{attribute}=", val)
else
user.user_option.send("#{attribute}=", attributes[attribute])
user.user_option.public_send("#{attribute}=", attributes[attribute])
end
end
end