instance method
method_name
Ruby on Rails 7.0.10
Since v5.2.8.1 Last seen in v7.0.10 PrivateSignature
method_name()
No documentation comment.
Source
# File actionview/lib/action_view/template.rb, line 344
def method_name
@method_name ||= begin
m = +"_#{identifier_method_name}__#{@identifier.hash}_#{__id__}"
m.tr!("-", "_")
m
end
end
Defined in actionview/lib/action_view/template.rb line 344
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Template