range_field_tag(name, value = nil, options = {})
Creates a range form element.
Accepts the same options as number_field_tag.
# File actionview/lib/action_view/helpers/form_tag_helper.rb, line 813 def range_field_tag(name, value = nil, options = {}) number_field_tag(name, value, options.merge(type: :range)) end