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