method
arity_of_callable
v7.1.3.4 -
Show latest stable
- Class:
ActiveSupport::Deprecation::Behavior
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