radio_button_tag(name, value, checked = false, options = {})
Instance Public methods
Creates a radio button; use groups of radio buttons named the same to allow
users to select from a group of options.
Options
:disabled - If set to true, the user will not be able to use
this input.
Any other key creates standard HTML options
for the tag.
Examples
radio_button_tag 'gender', 'male'
# => <input id="gender_male" name="gender" type="radio" value="male" />
radio_button_ta