method
method_not_get_method?
v6.1.7.7 -
Show latest stable
- Class:
ActionView::Helpers::UrlHelper
method_not_get_method?(method)private
No documentation available.
# File actionview/lib/action_view/helpers/url_helper.rb, line 722
def method_not_get_method?(method)
return false unless method
(STRINGIFIED_COMMON_METHODS[method] || method.to_s.downcase) != "get"
end