method

pass_transform_argument

pass_transform_argument(command, method, argument)
private

No documentation available.

# File activestorage/app/models/active_storage/variation.rb, line 78
    def pass_transform_argument(command, method, argument)
      if eligible_argument?(argument)
        command.public_send(method, argument)
      else
        command.public_send(method)
      end
    end