instance method
pass_transform_argument
Ruby on Rails 5.2.8.1
Since v5.2.8.1 Last seen in v5.2.8.1 PrivateSignature
pass_transform_argument(command, method, argument)
No documentation comment.
Parameters
-
commandreq -
methodreq -
argumentreq
Source
# File activestorage/app/models/active_storage/variation.rb, line 84
def pass_transform_argument(command, method, argument)
if eligible_argument?(argument)
command.public_send(method, argument)
else
command.public_send(method)
end
end
Defined in activestorage/app/models/active_storage/variation.rb line 84
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveStorage::Variation