module RuboCop::Cop::AllowedMethods

def allowed_method?(name)

Other tags:
    Api: - public
def allowed_method?(name)
  allowed_methods.include?(name.to_s)
end

def allowed_methods

Other tags:
    Api: - public
def allowed_methods
  cop_config.fetch('AllowedMethods', [])
end