method

arity_of_callable

arity_of_callable(callable)
private

No documentation available.

# File activesupport/lib/active_support/deprecation/behaviors.rb, line 143
        def arity_of_callable(callable)
          callable.respond_to?(:arity) ? callable.arity : callable.method(:call).arity
        end