module RuboCop::AST::MethodIdentifierPredicates

def camel_case_method?

Returns:
  • (Boolean) - whether the method is a camel case method
def camel_case_method?
  method_name.to_s =~ /\A[A-Z]/
end