instance method
method_not_get_method?
Ruby on Rails edge
Since edge Private — implementation detail, not part of the public APISignature
method_not_get_method?(method)
No documentation comment.
Parameters
-
methodreq
Source
# File actionview/lib/action_view/helpers/navigation_helper.rb, line 580
def method_not_get_method?(method)
return false unless method
(STRINGIFIED_COMMON_METHODS[method] || method.to_s.downcase) != "get"
end
Defined in actionview/lib/action_view/helpers/navigation_helper.rb line 580
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Helpers::NavigationHelper