class ActiveModel::AttributeMethods::ClassMethods::AttributeMethodMatcher

def match(method_name)

Experimental RBS support (using type sampling data from the type_fusion project).

def match: (String method_name) -> untyped

This signature was generated using 2 samples from 1 application.

def match(method_name)
  if @regex =~ method_name
    AttributeMethodMatch.new(target, $1)
  end
end