method
select_not_required?
select_not_required?(html_options)
private
Hide source
# File actionview/lib/action_view/helpers/tags/base.rb, line 139 def select_not_required?(html_options) !html_options["required"] || html_options["multiple"] || html_options["size"].to_i > 1 end