method

method_visibility

v6.0.0 - Show latest stable - Class: Module
method_visibility(method)
public

No documentation available.

# File activesupport/lib/active_support/core_ext/module/redefine_method.rb, line 30
  def method_visibility(method) # :nodoc:
    case
    when private_method_defined?(method)
      :private
    when protected_method_defined?(method)
      :protected
    else
      :public
    end
  end