diff options
author | Xavier Noria <fxn@hashref.com> | 2016-08-07 23:41:00 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2016-08-07 23:41:00 +0200 |
commit | b45c9ca9b6571108242c1dfc3d3e160f56baf025 (patch) | |
tree | 831cdef7e70fd26f001aa108daf2365a5fdc8b87 /activemodel/lib/active_model | |
parent | f90ee8ce2733326e9e1bf91426bb401017adb483 (diff) | |
download | rails-b45c9ca9b6571108242c1dfc3d3e160f56baf025.tar.gz rails-b45c9ca9b6571108242c1dfc3d3e160f56baf025.tar.bz2 rails-b45c9ca9b6571108242c1dfc3d3e160f56baf025.zip |
revises most Lint/EndAlignment offenses
Some case expressions remain, need to think about those ones.
Diffstat (limited to 'activemodel/lib/active_model')
-rw-r--r-- | activemodel/lib/active_model/validations/clusivity.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/activemodel/lib/active_model/validations/clusivity.rb b/activemodel/lib/active_model/validations/clusivity.rb index a869dba672..18f1056e2b 100644 --- a/activemodel/lib/active_model/validations/clusivity.rb +++ b/activemodel/lib/active_model/validations/clusivity.rb @@ -17,11 +17,11 @@ module ActiveModel def include?(record, value) members = if delimiter.respond_to?(:call) delimiter.call(record) - elsif delimiter.respond_to?(:to_sym) - record.send(delimiter) - else - delimiter - end + elsif delimiter.respond_to?(:to_sym) + record.send(delimiter) + else + delimiter + end members.send(inclusion_method(members), value) end |